SQL Monitor Report
trace_id |
query_sql |
RETURN_ROWS |
REQUEST_TIME |
REQUEST_END_TIME |
ELAPSED_TIME |
TENANT_NAME |
user_name |
db_name |
plan_id |
tenant_id |
mysql_version |
svr_ip |
svr_port |
YB420A01FA9D-000626C2C73BF28D-0-0 |
# 销售统计 SELECT t.in_user_id, t.in_user_name, concat(t.in_user_id) AS sort_value, sum(CASE WHEN t.data_mark = 'A' THEN t.counts ELSE 0 END) AS counts, sum(CASE WHEN t.data_mark = 'A' THEN t.price ELSE 0 END) AS price, sum(CASE WHEN t.data_mark = 'A' THEN t.sell_price ELSE 0 END) AS sell_price, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_price ELSE 0 END) AS avg_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gift_price ELSE 0 END) AS gift_price, sum(CASE WHEN t.data_mark = 'A' THEN t.discount_price ELSE 0 END) AS discount_price, sum(CASE WHEN t.data_mark = 'A' THEN t.point_price ELSE 0 END) AS point_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_price ELSE 0 END) AS statistics_price, sum(CASE WHEN t.data_mark = 'A' THEN t.self_modify_price ELSE 0 END) AS self_modify_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.in_price ELSE 0 END) AS in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gross_profit ELSE 0 END) AS gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_price ELSE 0 END) AS examine_price, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit, sum(CASE WHEN t.data_mark = 'B' THEN t.counts ELSE 0 END) AS counts_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.price ELSE 0 END) AS price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.sell_price ELSE 0 END) AS sell_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_price ELSE 0 END) AS avg_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gift_price ELSE 0 END) AS gift_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.discount_price ELSE 0 END) AS discount_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.point_price ELSE 0 END) AS point_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_price ELSE 0 END) AS statistics_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.self_modify_price ELSE 0 END) AS self_modify_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.in_price ELSE 0 END) AS in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gross_profit ELSE 0 END) AS gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_price ELSE 0 END) AS examine_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit_chain FROM (SELECT *, 'A' AS data_mark FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price FROM t_product_stock_detail t1 LEFT JOIN t_order_detail t2 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id AND t17.status = 3 WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t16.is_delete = 0 AND t2.is_mobile = TRUE AND t17.type IN (2, 3) AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id) SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id AND t6.product_stock_type != 3 AND t6.is_delete = 0 LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN adjustPriceTemp t16 ON t16.mkc_id = t1.mkc_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t7.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t17.status = 3 AND t17.type IN (2, 3) AND t16.is_adjust_after_trade = true AND t17.handle_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = FALSE AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name UNION ALL SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count FROM t_return_detail WHERE is_delete = 0 AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6 ON t2.id = t6.order_detail_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t2.is_mobile = FALSE AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10 WHERE is_mobile IS NOT NULL AND area_id IS NOT NULL AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName UNION ALL SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail a INNER JOIN t_operator_business b ON a.id = b.order_detail_id INNER JOIN t_order_detail t2 ON a.detail_parent_id = t2.id LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id) ON a.order_id = c.order_id LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND c.order_complete_time <= b.return_time AND b.`status` = 2 AND b.is_delete = 0 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND b.version = 0 AND b.return_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t2.id = t6.order_detail_id AND t6.mkc_id IS NULL LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type = 8 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t6.mkc_id = t1.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type = 8 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) ORDER BY date DESC, orderDetailId DESC) t LEFT JOIN t_category category ON t.cid = category.id LEFT JOIN t_depart_info t8 ON t.area_id = t8.id GROUP BY t.in_user_id, t.in_user_name) a UNION SELECT *, 'B' AS data_mark FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price FROM t_product_stock_detail t1 LEFT JOIN t_order_detail t2 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id AND t17.status = 3 WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t16.is_delete = 0 AND t2.is_mobile = TRUE AND t17.type IN (2, 3) AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id) SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id AND t6.product_stock_type != 3 AND t6.is_delete = 0 LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN adjustPriceTemp t16 ON t16.mkc_id = t1.mkc_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t7.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t17.status = 3 AND t17.type IN (2, 3) AND t16.is_adjust_after_trade = true AND t17.handle_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = FALSE AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name UNION ALL SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count FROM t_return_detail WHERE is_delete = 0 AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6 ON t2.id = t6.order_detail_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t2.is_mobile = FALSE AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10 WHERE is_mobile IS NOT NULL AND area_id IS NOT NULL AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName UNION ALL SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail a INNER JOIN t_operator_business b ON a.id = b.order_detail_id INNER JOIN t_order_detail t2 ON a.detail_parent_id = t2.id LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id) ON a.order_id = c.order_id LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_ |
3 |
2024-11-21 10:16:19.220900 |
2024-11-21 10:16:28.428100 |
9207211 |
neo_dev |
root |
small_oa_169 |
11150 |
1006 |
5.7.25-OceanBase_CE-v4.3.4.0 |
10.1.250.157 |
2882 |
select * from oceanbase.gv$ob_plan_cache_plan_explain where tenant_id = 1006 and plan_id = 11150 and svr_ip = '10.1.250.157' and svr_port = 2882
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| TENANT_ID | SVR_IP | SVR_PORT | PLAN_ID | PLAN_DEPTH | PLAN_LINE_ID | OPERATOR | NAME | ROWS | COST | PROPERTY |
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| 1006 | 10.1.250.157 | 2882 | 11150 | 0 | 0 | PHY_VEC_LIMIT | NULL | 10 | 832499 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 1 | 1 | PHY_VEC_SORT | NULL | 10 | 832499 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 2 | 2 | PHY_VEC_HASH_GROUP_BY | NULL | 1078 | 832422 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 3 | 3 | PHY_VEC_SUBPLAN_SCAN | NULL | 1079 | 829895 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 4 | 4 | PHY_VEC_HASH_UNION | NULL | 1079 | 829893 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 5 | 5 | PHY_VEC_HASH_GROUP_BY | NULL | 468 | 331523 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 6 | 6 | PHY_VEC_SUBPLAN_SCAN | NULL | 468 | 330679 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 7 | 7 | PHY_MERGE_UNION | NULL | 468 | 330678 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 8 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 36104 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 9 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 35700 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 10 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 35684 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 11 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 35684 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 12 | PHY_VEC_HASH_JOIN | NULL | 1 | 35668 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 13 | PHY_PX_FIFO_COORD | NULL | 1 | 35665 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 14 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 35665 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 15 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 35664 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 16 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 35648 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 17 | PHY_NESTED_LOOP_JOIN | NULL | 155 | 31460 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 18 | PHY_NESTED_LOOP_JOIN | NULL | 239 | 27623 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 19 | PHY_PX_FIFO_RECEIVE | NULL | 261 | 4189 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 20 | PHY_PX_DIST_TRANSMIT | NULL | 261 | 3913 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 21 | PHY_VEC_HASH_JOIN | NULL | 261 | 3479 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 22 | PHY_TABLE_SCAN | t7(treturn_ix_check2_time) | 233 | 1172 | table_rows:15920, physical_range_rows:374, logical_range_rows:374, index_back_rows:374, output_rows:232, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:374, physical_rc:374)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 23 | PHY_VEC_TABLE_SCAN | t6 | 6350 | 1699 | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:6349, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 24 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 267 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 25 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 267 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 26 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 27 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 28 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 29 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 30 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 31 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 32 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 33 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 34 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 35 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 36 | PHY_VEC_SUBPLAN_SCAN | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 37 | PHY_VEC_MERGE_GROUP_BY | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 38 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 39 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 387 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 40 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 357 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 41 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 340 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 42 | PHY_VEC_HASH_JOIN | NULL | 1 | 313 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 43 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 311 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 44 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 295 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 45 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 279 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 46 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 263 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 47 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 235 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 48 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 219 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail], estimation info[table_id:503450, (table_type:10, version:-1--1--1, logical_rc:73649, physical_rc:73649), (table_type:10, version:-1--1--1, logical_rc:26518, physical_rc:26518), (table_type:10, version:-1--1--1, logical_rc:49733, physical_rc:49733), (table_type:10, version:-1--1--1, logical_rc:41548, physical_rc:41548), (table_type:10, version:-1--1--1, logical_rc:57710, physical_rc:57710), (table_type:10, version:-1--1--1, logical_rc:54346, physical_rc:54346), (table_type:10, version:-1--1--1, logical_rc:31239, physical_rc:31239), (table_type:10, version:-1--1--1, logical_rc:29548, physical_rc:29548), (table_type:10, version:-1--1--1, logical_rc:66798, physical_rc:66798), (table_type:10, version:-1--1--1, logical_rc:489700, physical_rc:489700)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 49 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 50 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 51 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 52 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 53 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 54 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 55 | PHY_TABLE_SCAN | t6(idx_mkc_id) | 1 | 26 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_return_detail_return_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 56 | PHY_TABLE_SCAN | t7 | 1 | 15 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 57 | PHY_TABLE_SCAN | t16(trebate_detail_mkc_id) | 2 | 29 | table_rows:174768, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,idx_adjust_price_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 58 | PHY_TABLE_SCAN | t17 | 1 | 15 | table_rows:9269, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[table_index,t_product_adjust_price], pruned_index_name[table_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 59 | PHY_VEC_MERGE_JOIN | NULL | 310 | 75952 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 60 | PHY_VEC_TABLE_SCAN | t36(idx_order_id) | 1268 | 34 | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend], estimation info[table_id:501169, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 61 | PHY_SORT | NULL | 307 | 75849 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 62 | PHY_VEC_HASH_JOIN | NULL | 307 | 75662 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 63 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 64 | PHY_NESTED_LOOP_JOIN | NULL | 307 | 75633 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 65 | PHY_NESTED_LOOP_JOIN | NULL | 307 | 70702 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 66 | PHY_NESTED_LOOP_JOIN | NULL | 232 | 14342 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 67 | PHY_NESTED_LOOP_JOIN | NULL | 182 | 8434 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 68 | PHY_PX_FIFO_COORD | NULL | 182 | 8429 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 69 | PHY_PX_REDUCE_TRANSMIT | NULL | 182 | 8394 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 70 | PHY_NESTED_LOOP_JOIN | NULL | 182 | 8317 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 71 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 182 | 5394 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:181, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 72 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 73 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 74 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 75 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 76 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 77 | PHY_TABLE_SCAN | t2(index_orderId) | 2 | 31 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 78 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 79 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 80 | PHY_VEC_HASH_JOIN | NULL | 3 | 99999 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 81 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 82 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 99996 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 83 | PHY_PX_FIFO_COORD | NULL | 3 | 99996 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 84 | PHY_PX_REDUCE_TRANSMIT | NULL | 3 | 99994 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 85 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 99989 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 86 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 99949 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 87 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 99910 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 88 | PHY_VEC_HASH_JOIN | NULL | 3 | 99871 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 89 | PHY_NESTED_LOOP_JOIN | NULL | 476 | 93805 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 90 | PHY_PX_FIFO_RECEIVE | NULL | 735 | 80067 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 91 | PHY_PX_DIST_TRANSMIT | NULL | 735 | 79516 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 92 | PHY_NESTED_LOOP_JOIN | NULL | 735 | 78279 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 93 | PHY_PX_FIFO_RECEIVE | NULL | 744 | 11483 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 94 | PHY_PX_DIST_TRANSMIT | NULL | 744 | 10211 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 95 | PHY_NESTED_LOOP_JOIN | NULL | 744 | 8203 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 96 | PHY_VEC_TABLE_SCAN | t17(table_index) | 78 | 11 | table_rows:9269, physical_range_rows:78, logical_range_rows:78, index_back_rows:0, output_rows:78, avaiable_index_name[table_index,t_product_adjust_price], unstable_index_name[t_product_adjust_price], estimation info[table_id:501362, (table_type:10, version:-1--1--1, logical_rc:78, physical_rc:78)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 97 | PHY_TABLE_SCAN | t16(idx_adjust_price_id) | 14 | 103 | table_rows:174768, physical_range_rows:19, logical_range_rows:19, index_back_rows:19, output_rows:13, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 98 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 267 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 99 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 267 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 100 | PHY_VEC_TABLE_SCAN | t2 | 1 | 17 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 101 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 1465 | 5765 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:1464, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 102 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 103 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 104 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 105 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 106 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 107 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 108 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 109 | PHY_VEC_HASH_GROUP_BY | NULL | 156 | 113527 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 110 | PHY_VEC_SUBPLAN_SCAN | NULL | 156 | 112830 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 111 | PHY_MERGE_UNION | NULL | 156 | 112830 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 112 | PHY_VEC_HASH_GROUP_BY | NULL | 155 | 96453 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 113 | PHY_VEC_HASH_JOIN | NULL | 310 | 95532 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 114 | PHY_PX_FIFO_COORD | NULL | 328 | 1114 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 115 | PHY_PX_REDUCE_TRANSMIT | NULL | 328 | 788 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 116 | PHY_VEC_TABLE_SCAN | sysc | 328 | 55 | table_rows:655, physical_range_rows:655, logical_range_rows:655, index_back_rows:0, output_rows:327, avaiable_index_name[t_sys_config], estimation info[table_id:501959, (table_type:10, version:-1--1--1, logical_rc:655, physical_rc:655)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 117 | PHY_NESTED_LOOP_JOIN | NULL | 310 | 94279 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 118 | PHY_NESTED_LOOP_JOIN | NULL | 235 | 37171 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 119 | PHY_NESTED_LOOP_JOIN | NULL | 235 | 33391 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 120 | PHY_NESTED_LOOP_JOIN | NULL | 235 | 29612 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 121 | PHY_VEC_HASH_JOIN | NULL | 235 | 22847 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 122 | PHY_VEC_HASH_JOIN | NULL | 235 | 17402 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 123 | PHY_VEC_TABLE_SCAN | t36 | 1268 | 57 | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], estimation info[table_id:501168, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 124 | PHY_VEC_HASH_JOIN | NULL | 232 | 17066 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 125 | PHY_VEC_TABLE_SCAN | la | 2 | 2 | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 126 | PHY_VEC_HASH_JOIN | NULL | 232 | 17037 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 127 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 128 | PHY_NESTED_LOOP_JOIN | NULL | 232 | 17014 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 129 | PHY_VEC_HASH_JOIN | NULL | 232 | 13280 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 130 | PHY_VEC_TABLE_SCAN | t40 | 1 | 2 | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 131 | PHY_NESTED_LOOP_JOIN | NULL | 232 | 13251 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 132 | PHY_NESTED_LOOP_JOIN | NULL | 182 | 7125 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 133 | PHY_PX_FIFO_COORD | NULL | 182 | 7120 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 134 | PHY_PX_REDUCE_TRANSMIT | NULL | 182 | 6665 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 135 | PHY_VEC_HASH_JOIN | NULL | 182 | 5641 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 136 | PHY_VEC_TABLE_SCAN | t11 | 320 | 16 | table_rows:320, physical_range_rows:320, logical_range_rows:320, index_back_rows:0, output_rows:320, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username], estimation info[table_id:501933, (table_type:10, version:-1--1--1, logical_rc:320, physical_rc:320)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 137 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 182 | 5526 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:181, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 138 | PHY_VEC_MATERIAL | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 139 | PHY_PX_FIFO_COORD | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 140 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 141 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 142 | PHY_TABLE_SCAN | t2(index_orderId) | 2 | 32 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 143 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 144 | PHY_VEC_TABLE_SCAN | t16 | 37334 | 1828 | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:37334, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 145 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 146 | PHY_TABLE_SCAN | vpcc | 1 | 15 | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 147 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 148 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 149 | PHY_VEC_HASH_GROUP_BY | NULL | 1 | 16376 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 150 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16375 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 151 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16359 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 152 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16115 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 153 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16086 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 154 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16059 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 155 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16032 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 156 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 16005 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 157 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 15989 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 158 | PHY_VEC_MERGE_JOIN | NULL | 1 | 15973 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 159 | PHY_VEC_TABLE_SCAN | la | 2 | 2 | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 160 | PHY_SORT | NULL | 1 | 15970 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 161 | PHY_VEC_MERGE_JOIN | NULL | 1 | 15970 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 162 | PHY_VEC_TABLE_SCAN | t40 | 1 | 2 | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 163 | PHY_SORT | NULL | 1 | 15968 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 164 | PHY_VEC_HASH_JOIN | NULL | 1 | 15968 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 165 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 166 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 15965 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 167 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 15949 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 168 | PHY_PX_FIFO_COORD | NULL | 1 | 15949 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 169 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 15948 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 29 | 170 | PHY_VEC_HASH_JOIN | NULL | 1 | 15945 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 171 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 228 | 5415 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:227, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 172 | PHY_NESTED_LOOP_JOIN | NULL | 257 | 10369 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 31 | 173 | PHY_VEC_HASH_JOIN | NULL | 257 | 6242 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 32 | 174 | PHY_TABLE_SCAN | t7(treturn_ix_check2_time) | 233 | 1223 | table_rows:15920, physical_range_rows:374, logical_range_rows:374, index_back_rows:374, output_rows:232, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:374, physical_rc:374)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 32 | 175 | PHY_VEC_SUBPLAN_SCAN | NULL | 5499 | 4462 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 33 | 176 | PHY_VEC_HASH_GROUP_BY | NULL | 5499 | 4447 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 34 | 177 | PHY_VEC_TABLE_SCAN | t_return_detail | 5499 | 1733 | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:5498, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_mkc_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 31 | 178 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 179 | PHY_VEC_MATERIAL | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 180 | PHY_PX_FIFO_COORD | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 29 | 181 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 182 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 183 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 184 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 185 | PHY_TABLE_SCAN | vpcc | 1 | 15 | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 186 | PHY_TABLE_SCAN | t16(index_orderDetailId) | 1 | 26 | table_rows:37334, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderDetailId,t_operator_business], pruned_index_name[t_operator_business] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 187 | PHY_TABLE_SCAN | t11(un_idx_special_user_id) | 1 | 26 | table_rows:320, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username,t_special_user] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 188 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 26 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], unstable_index_name[t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 189 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 190 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 191 | PHY_TABLE_SCAN | sysc | 1 | 15 | table_rows:655, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[t_sys_config] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 192 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4526 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 193 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4510 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 194 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4481 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 195 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4481 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 196 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4465 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 197 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4437 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 198 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4283 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 199 | PHY_VEC_HASH_JOIN | NULL | 2 | 4247 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 200 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 201 | PHY_NESTED_LOOP_JOIN | NULL | 2 | 4244 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 202 | PHY_NESTED_LOOP_JOIN | NULL | 2 | 4222 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 203 | PHY_NESTED_LOOP_JOIN | NULL | 18 | 3933 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 204 | PHY_VEC_TABLE_SCAN | b | 18 | 3645 | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:17, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 205 | PHY_TABLE_SCAN | a | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 206 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 207 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 208 | PHY_TABLE_SCAN | c(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 209 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 153 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 210 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 211 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 212 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 213 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 214 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 215 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 216 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 217 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 218 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 315 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 219 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 299 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 220 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 299 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 221 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 145 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 222 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 116 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 223 | PHY_VEC_HASH_JOIN | NULL | 1 | 100 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 224 | PHY_PX_FIFO_COORD | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 225 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 226 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 227 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 81 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 228 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 54 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 229 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 230 | PHY_TABLE_SCAN | t7(treturn_ix_return_type) | 1 | 8 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 231 | PHY_TABLE_SCAN | t6(idx_return_detail_return_id) | 1 | 29 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 232 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 233 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 234 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 235 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 236 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 237 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 238 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 153 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 239 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 240 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 241 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 242 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 243 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 244 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 251 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 245 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 235 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 246 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 206 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 247 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 206 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 248 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 190 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 249 | PHY_VEC_HASH_JOIN | NULL | 1 | 163 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 250 | PHY_PX_FIFO_COORD | NULL | 1 | 160 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 251 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 160 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 252 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 160 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 253 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 144 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 254 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 128 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 255 | PHY_PX_FIFO_RECEIVE | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 256 | PHY_PX_DIST_TRANSMIT | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 257 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 258 | PHY_TABLE_SCAN | t7(treturn_ix_return_type) | 1 | 8 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 259 | PHY_TABLE_SCAN | t6(idx_return_detail_return_id) | 2 | 29 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_mkc_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 260 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 266 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 261 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 266 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 262 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 263 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 264 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 265 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 266 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 267 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 268 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 269 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 270 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 271 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 272 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 5 | 273 | PHY_VEC_HASH_GROUP_BY | NULL | 612 | 496414 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 6 | 274 | PHY_VEC_SUBPLAN_SCAN | NULL | 612 | 495309 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 7 | 275 | PHY_MERGE_UNION | NULL | 612 | 495308 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 276 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51493 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 277 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51089 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 278 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51073 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 279 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51073 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 280 | PHY_VEC_HASH_JOIN | NULL | 1 | 51056 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 281 | PHY_PX_FIFO_COORD | NULL | 1 | 51054 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 282 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 51053 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 283 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51052 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 284 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 51036 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 285 | PHY_NESTED_LOOP_JOIN | NULL | 226 | 44911 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 286 | PHY_NESTED_LOOP_JOIN | NULL | 349 | 39298 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 287 | PHY_PX_FIFO_RECEIVE | NULL | 382 | 5025 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 288 | PHY_PX_DIST_TRANSMIT | NULL | 382 | 4622 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 289 | PHY_VEC_HASH_JOIN | NULL | 382 | 3987 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 290 | PHY_TABLE_SCAN | t7(treturn_ix_check2_time) | 341 | 1644 | table_rows:15920, physical_range_rows:547, logical_range_rows:547, index_back_rows:547, output_rows:340, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:547, physical_rc:547)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 291 | PHY_VEC_TABLE_SCAN | t6 | 6350 | 1699 | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:6349, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 292 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 267 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 293 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 267 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 294 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 295 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 296 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 297 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 298 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 299 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 300 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 301 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 302 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 303 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 304 | PHY_VEC_SUBPLAN_SCAN | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 305 | PHY_VEC_MERGE_GROUP_BY | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 306 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 403 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 307 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 387 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 308 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 357 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 309 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 340 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 310 | PHY_VEC_HASH_JOIN | NULL | 1 | 313 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 311 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 311 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 312 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 295 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 313 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 279 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 314 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 263 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 315 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 235 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 316 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 219 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail], estimation info[table_id:503450, (table_type:10, version:-1--1--1, logical_rc:73649, physical_rc:73649), (table_type:10, version:-1--1--1, logical_rc:26518, physical_rc:26518), (table_type:10, version:-1--1--1, logical_rc:49733, physical_rc:49733), (table_type:10, version:-1--1--1, logical_rc:41548, physical_rc:41548), (table_type:10, version:-1--1--1, logical_rc:57710, physical_rc:57710), (table_type:10, version:-1--1--1, logical_rc:54346, physical_rc:54346), (table_type:10, version:-1--1--1, logical_rc:31239, physical_rc:31239), (table_type:10, version:-1--1--1, logical_rc:29548, physical_rc:29548), (table_type:10, version:-1--1--1, logical_rc:66798, physical_rc:66798), (table_type:10, version:-1--1--1, logical_rc:489700, physical_rc:489700)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 317 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 318 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 319 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 320 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 321 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 322 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 323 | PHY_TABLE_SCAN | t6(idx_mkc_id) | 1 | 26 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_return_detail_return_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 324 | PHY_TABLE_SCAN | t7 | 1 | 15 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 325 | PHY_TABLE_SCAN | t16(trebate_detail_mkc_id) | 2 | 29 | table_rows:174768, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,idx_adjust_price_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 326 | PHY_TABLE_SCAN | t17 | 1 | 15 | table_rows:9269, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[table_index,t_product_adjust_price], pruned_index_name[table_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 327 | PHY_VEC_HASH_JOIN | NULL | 405 | 97387 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 328 | PHY_VEC_TABLE_SCAN | t36(idx_order_id) | 1268 | 34 | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend], estimation info[table_id:501169, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 329 | PHY_VEC_HASH_JOIN | NULL | 400 | 97084 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 330 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 331 | PHY_NESTED_LOOP_JOIN | NULL | 400 | 97048 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 332 | PHY_NESTED_LOOP_JOIN | NULL | 400 | 90616 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 333 | PHY_NESTED_LOOP_JOIN | NULL | 303 | 17094 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 334 | PHY_NESTED_LOOP_JOIN | NULL | 237 | 9387 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 335 | PHY_PX_FIFO_COORD | NULL | 237 | 9381 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 336 | PHY_PX_REDUCE_TRANSMIT | NULL | 237 | 9335 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 337 | PHY_NESTED_LOOP_JOIN | NULL | 237 | 9234 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 338 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 237 | 5421 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:236, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 339 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 340 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 341 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 342 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 343 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 344 | PHY_TABLE_SCAN | t2(index_orderId) | 2 | 31 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 345 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 346 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 347 | PHY_VEC_HASH_JOIN | NULL | 6 | 198930 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 348 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 349 | PHY_NESTED_LOOP_JOIN | NULL | 6 | 198927 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 350 | PHY_PX_FIFO_COORD | NULL | 6 | 198927 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 351 | PHY_PX_REDUCE_TRANSMIT | NULL | 6 | 198922 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 352 | PHY_NESTED_LOOP_JOIN | NULL | 6 | 198911 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 353 | PHY_NESTED_LOOP_JOIN | NULL | 6 | 198831 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 354 | PHY_NESTED_LOOP_JOIN | NULL | 6 | 198750 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 355 | PHY_VEC_HASH_JOIN | NULL | 6 | 198670 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 356 | PHY_NESTED_LOOP_JOIN | NULL | 976 | 192417 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 357 | PHY_PX_FIFO_RECEIVE | NULL | 1507 | 164236 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 358 | PHY_PX_DIST_TRANSMIT | NULL | 1507 | 163107 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 359 | PHY_NESTED_LOOP_JOIN | NULL | 1507 | 160569 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 360 | PHY_PX_FIFO_RECEIVE | NULL | 1527 | 23551 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 361 | PHY_PX_DIST_TRANSMIT | NULL | 1527 | 20942 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 362 | PHY_NESTED_LOOP_JOIN | NULL | 1527 | 16822 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 363 | PHY_VEC_TABLE_SCAN | t17(table_index) | 160 | 18 | table_rows:9269, physical_range_rows:160, logical_range_rows:160, index_back_rows:0, output_rows:160, avaiable_index_name[table_index,t_product_adjust_price], unstable_index_name[t_product_adjust_price], estimation info[table_id:501362, (table_type:10, version:-1--1--1, logical_rc:160, physical_rc:160)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 364 | PHY_TABLE_SCAN | t16(idx_adjust_price_id) | 14 | 103 | table_rows:174768, physical_range_rows:19, logical_range_rows:19, index_back_rows:19, output_rows:13, avaiable_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_adjust_price_id,idx_in_stock_detail_id,t_product_adjust_price_detail], pruned_index_name[trebate_detail_ppid,trebate_detail_mkc_id,idx_in_stock_detail_id], unstable_index_name[t_product_adjust_price_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 365 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 267 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 366 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 267 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 367 | PHY_VEC_TABLE_SCAN | t2 | 1 | 17 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 368 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 1465 | 5765 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:1464, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 369 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 370 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 371 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 372 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 373 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 374 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 375 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 376 | PHY_VEC_HASH_GROUP_BY | NULL | 203 | 141949 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 377 | PHY_VEC_SUBPLAN_SCAN | NULL | 203 | 141039 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 378 | PHY_MERGE_UNION | NULL | 203 | 141039 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 379 | PHY_VEC_HASH_GROUP_BY | NULL | 203 | 122200 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 380 | PHY_VEC_HASH_JOIN | NULL | 405 | 120999 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 381 | PHY_PX_FIFO_COORD | NULL | 328 | 1114 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 382 | PHY_PX_REDUCE_TRANSMIT | NULL | 328 | 788 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 383 | PHY_VEC_TABLE_SCAN | sysc | 328 | 55 | table_rows:655, physical_range_rows:655, logical_range_rows:655, index_back_rows:0, output_rows:327, avaiable_index_name[t_sys_config], estimation info[table_id:501959, (table_type:10, version:-1--1--1, logical_rc:655, physical_rc:655)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 384 | PHY_NESTED_LOOP_JOIN | NULL | 405 | 119738 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 385 | PHY_NESTED_LOOP_JOIN | NULL | 307 | 45240 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 386 | PHY_NESTED_LOOP_JOIN | NULL | 307 | 40310 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 387 | PHY_VEC_HASH_JOIN | NULL | 307 | 35380 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 388 | PHY_NESTED_LOOP_JOIN | NULL | 307 | 29785 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 389 | PHY_VEC_HASH_JOIN | NULL | 307 | 20960 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 390 | PHY_VEC_TABLE_SCAN | t36 | 1268 | 57 | table_rows:1268, physical_range_rows:1268, logical_range_rows:1268, index_back_rows:0, output_rows:1268, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], estimation info[table_id:501168, (table_type:10, version:-1--1--1, logical_rc:1268, physical_rc:1268)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 391 | PHY_VEC_HASH_JOIN | NULL | 303 | 20616 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 392 | PHY_VEC_TABLE_SCAN | la | 2 | 2 | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 393 | PHY_VEC_HASH_JOIN | NULL | 303 | 20579 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 394 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 395 | PHY_NESTED_LOOP_JOIN | NULL | 303 | 20551 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 396 | PHY_VEC_HASH_JOIN | NULL | 303 | 15679 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 397 | PHY_VEC_TABLE_SCAN | t40 | 1 | 2 | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 398 | PHY_NESTED_LOOP_JOIN | NULL | 303 | 15642 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 399 | PHY_NESTED_LOOP_JOIN | NULL | 237 | 7651 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 400 | PHY_PX_FIFO_COORD | NULL | 237 | 7644 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 401 | PHY_PX_REDUCE_TRANSMIT | NULL | 237 | 7051 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 402 | PHY_VEC_HASH_JOIN | NULL | 237 | 5715 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 403 | PHY_VEC_TABLE_SCAN | t11 | 320 | 16 | table_rows:320, physical_range_rows:320, logical_range_rows:320, index_back_rows:0, output_rows:320, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username], estimation info[table_id:501933, (table_type:10, version:-1--1--1, logical_rc:320, physical_rc:320)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 404 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 237 | 5594 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:236, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 405 | PHY_VEC_MATERIAL | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 406 | PHY_PX_FIFO_COORD | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 407 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 408 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 409 | PHY_TABLE_SCAN | t2(index_orderId) | 2 | 32 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_recover_stock_id], unstable_index_name[t_order_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 410 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 411 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 412 | PHY_VEC_TABLE_SCAN | t16 | 37334 | 1828 | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:37334, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 413 | PHY_TABLE_SCAN | vpcc | 1 | 15 | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 414 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 415 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 416 | PHY_VEC_HASH_GROUP_BY | NULL | 1 | 18838 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 417 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18836 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 418 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18820 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 419 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18577 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 420 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18548 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 421 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18521 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 422 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18494 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 423 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18467 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 424 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18451 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 425 | PHY_VEC_MERGE_JOIN | NULL | 1 | 18434 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 426 | PHY_VEC_TABLE_SCAN | la | 2 | 2 | table_rows:3, physical_range_rows:3, logical_range_rows:3, index_back_rows:0, output_rows:1, avaiable_index_name[t_label], estimation info[table_id:500997, (table_type:10, version:-1--1--1, logical_rc:3, physical_rc:3)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 427 | PHY_SORT | NULL | 1 | 18432 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 428 | PHY_VEC_MERGE_JOIN | NULL | 1 | 18432 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 429 | PHY_VEC_TABLE_SCAN | t40 | 1 | 2 | table_rows:1, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_finance_accounting_body], estimation info[table_id:500823, (table_type:10, version:-1--1--1, logical_rc:1, physical_rc:1)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 23 | 430 | PHY_SORT | NULL | 1 | 18430 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 24 | 431 | PHY_VEC_HASH_JOIN | NULL | 1 | 18430 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 432 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 25 | 433 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18427 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 434 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 18411 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 435 | PHY_PX_FIFO_COORD | NULL | 1 | 18411 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 436 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 18409 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 29 | 437 | PHY_VEC_HASH_JOIN | NULL | 1 | 18404 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 438 | PHY_TABLE_SCAN | t3(torder_ix_area_id) | 228 | 5415 | table_rows:428132, physical_range_rows:1485, logical_range_rows:1485, index_back_rows:1485, output_rows:227, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_complete_time,idx_order_parent_id,idx_in_user_id,idx_return_time,idx_trader_id,idx_contract_mobile], estimation info[table_id:502333, (table_type:10, version:-1--1--1, logical_rc:1485, physical_rc:1485)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 439 | PHY_NESTED_LOOP_JOIN | NULL | 375 | 12819 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 31 | 440 | PHY_VEC_HASH_JOIN | NULL | 375 | 6783 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 32 | 441 | PHY_TABLE_SCAN | t7(treturn_ix_check2_time) | 341 | 1719 | table_rows:15920, physical_range_rows:547, logical_range_rows:547, index_back_rows:547, output_rows:340, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501820, (table_type:10, version:-1--1--1, logical_rc:547, physical_rc:547)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 32 | 442 | PHY_VEC_SUBPLAN_SCAN | NULL | 5499 | 4462 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 33 | 443 | PHY_VEC_HASH_GROUP_BY | NULL | 5499 | 4447 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 34 | 444 | PHY_VEC_TABLE_SCAN | t_return_detail | 5499 | 1733 | table_rows:15552, physical_range_rows:15552, logical_range_rows:15552, index_back_rows:0, output_rows:5498, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_mkc_id], estimation info[table_id:501825, (table_type:10, version:-1--1--1, logical_rc:15552, physical_rc:15552)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 31 | 445 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 27 | 446 | PHY_VEC_MATERIAL | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 28 | 447 | PHY_PX_FIFO_COORD | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 29 | 448 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 7 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 30 | 449 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 26 | 450 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 451 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 452 | PHY_TABLE_SCAN | vpcc | 1 | 15 | table_rows:760721, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_huijb_original_detail_id,t_order_detail_extend], pruned_index_name[idx_huijb_original_detail_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 453 | PHY_TABLE_SCAN | t16(index_orderDetailId) | 1 | 26 | table_rows:37334, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[index_orderDetailId,t_operator_business], pruned_index_name[t_operator_business] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 454 | PHY_TABLE_SCAN | t11(un_idx_special_user_id) | 1 | 26 | table_rows:320, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[un_idx_special_username,un_idx_special_user_id,t_special_user], pruned_index_name[un_idx_special_username,t_special_user] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 455 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 26 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id], unstable_index_name[t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 456 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 457 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 242 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 458 | PHY_TABLE_SCAN | sysc | 1 | 15 | table_rows:655, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[t_sys_config] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 459 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4978 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 460 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4962 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 461 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4933 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 462 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4933 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 463 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4917 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 464 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4890 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 465 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 4736 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 466 | PHY_VEC_HASH_JOIN | NULL | 3 | 4673 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 467 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 468 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 4670 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 469 | PHY_NESTED_LOOP_JOIN | NULL | 3 | 4633 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 470 | PHY_NESTED_LOOP_JOIN | NULL | 31 | 4140 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 471 | PHY_VEC_TABLE_SCAN | b | 31 | 3646 | table_rows:37334, physical_range_rows:37334, logical_range_rows:37334, index_back_rows:0, output_rows:30, avaiable_index_name[index_orderDetailId,t_operator_business], estimation info[table_id:501084, (table_type:10, version:-1--1--1, logical_rc:37334, physical_rc:37334)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 472 | PHY_TABLE_SCAN | a | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 473 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 474 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 475 | PHY_TABLE_SCAN | c(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 476 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 153 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 477 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 478 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 479 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 480 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 481 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 482 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 483 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 484 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 485 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 315 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 486 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 299 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 487 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 270 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 488 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 270 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 489 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 254 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 490 | PHY_VEC_HASH_JOIN | NULL | 1 | 100 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 491 | PHY_PX_FIFO_COORD | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 492 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 493 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 98 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 494 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 81 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 495 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 54 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 496 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 497 | PHY_TABLE_SCAN | t7(treturn_ix_return_type) | 1 | 8 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 498 | PHY_TABLE_SCAN | t6(idx_return_detail_return_id) | 1 | 29 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 499 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 500 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 501 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 502 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 503 | PHY_TABLE_SCAN | t1(tproductstockdetail_ix_order_detail_id) | 2 | 153 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 504 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 505 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 506 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 507 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 508 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 509 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 510 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 8 | 511 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 251 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 512 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 235 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 513 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 206 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 514 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 206 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 515 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 190 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 516 | PHY_VEC_HASH_JOIN | NULL | 1 | 163 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 517 | PHY_PX_FIFO_COORD | NULL | 1 | 161 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 15 | 518 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 161 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 16 | 519 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 160 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 520 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 144 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 521 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 128 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 522 | PHY_PX_FIFO_RECEIVE | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 523 | PHY_PX_DIST_TRANSMIT | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 21 | 524 | PHY_NESTED_LOOP_JOIN | NULL | 1 | 38 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 525 | PHY_TABLE_SCAN | t7(treturn_ix_return_type) | 1 | 8 | table_rows:15920, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[treturn_ix_return_type,treturn_ix_check2_time,treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id,t_return], pruned_index_name[treturn_ix_return_way,treturn_ix_create_time,treturn_ix_area_id,idx_orginal_order_id], unstable_index_name[t_return], estimation info[table_id:501819, (table_type:10, version:-1--1--1, logical_rc:0, physical_rc:0)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 22 | 526 | PHY_TABLE_SCAN | t6(idx_return_detail_return_id) | 2 | 29 | table_rows:15552, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:1, avaiable_index_name[idx_order_detail_id,idx_return_detail_return_id,idx_mkc_id,t_return_detail], pruned_index_name[idx_order_detail_id,idx_mkc_id], unstable_index_name[t_return_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 19 | 527 | PHY_VEC_GRANULE_ITERATOR | NULL | 1 | 266 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 20 | 528 | PHY_TABLE_SCAN | t1(index_mck_id) | 1 | 266 | table_rows:920789, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid,index_mck_id,t_product_stock_detail], pruned_index_name[productstockdetail_ppid,productstockdetail_instock_detail_id,index_area_id,tproductstockdetail_ix_related_id_related_type,tproductstockdetail_ix_order_detail_id,idx_insource_id,idx_imei,idx_imei_2,idx_imei_3,idx_imei_4,t_product_stock_detail_stock_state_IDX,t_product_stock_detail_is_mobile_IDX,t_product_stock_detail_arrive_shop_time_index,idx_areaid], unstable_index_name[t_product_stock_detail] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 18 | 529 | PHY_TABLE_SCAN | t2 | 1 | 15 | table_rows:775732, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:0, avaiable_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id,t_order_detail], pruned_index_name[index_orderId,torderdetail_ix_ppid,parent_index,idx_in_user_id,idx_detail_type,idx_product_stock_type,idx_is_delete,idx_recover_stock_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 17 | 530 | PHY_TABLE_SCAN | t4 | 1 | 15 | table_rows:426212, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id,t_product_info], pruned_index_name[tproductinfo_productid,tproductinfo_cid,tproductinfo_ismobile,tproductinfo_ppriceid1,tproductinfo_barCode,product_name_IDX,tproductinfo_ix_views,idx_source,idx_brand_id] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 531 | PHY_VEC_TABLE_SCAN | pl | 2 | 2 | table_rows:2, physical_range_rows:2, logical_range_rows:2, index_back_rows:0, output_rows:2, avaiable_index_name[index_label_id,product_index,t_product_label], pruned_index_name[index_label_id], estimation info[table_id:501470, (table_type:10, version:-1--1--1, logical_rc:2, physical_rc:2)] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 532 | PHY_TABLE_SCAN | t3(torder_ix_order_id) | 1 | 26 | table_rows:428132, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[torder_ix_order_id,torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order], pruned_index_name[torder_ix_user_id,torder_ix_area_id,torder_ix_complete_time,idx_order_parent_id,idx_order_state,idx_in_user_id,idx_return_time,idx_trader_id,idx_is_delete,idx_contract_mobile,t_order] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 533 | PHY_TABLE_SCAN | t5 | 1 | 15 | table_rows:236695, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index,t_user], pruned_index_name[t_user_mobile_UN,t_user_name_UN,tuser_ix_user_level,regist_time_index] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 11 | 534 | PHY_VEC_MATERIAL | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 12 | 535 | PHY_PX_FIFO_COORD | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 13 | 536 | PHY_PX_REDUCE_TRANSMIT | NULL | 1 | 6 | NULL |
| 1006 | 10.1.250.157 | 2882 | 11150 | 14 | 537 | PHY_VEC_TABLE_SCAN | t8 | 1 | 6 | table_rows:236, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[tdepartinfo_ix1,t_depart_info], pruned_index_name[tdepartinfo_ix1] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 10 | 538 | PHY_TABLE_SCAN | t17(IDX_BIND_DETAIL_ID) | 1 | 28 | table_rows:36983, physical_range_rows:1, logical_range_rows:1, index_back_rows:1, output_rows:0, avaiable_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID,IDX_BIND_DETAIL_ID,t_after_services_buy], pruned_index_name[IDX_PPID,IDX_ORDER_DETAIL_ID,IDX_USER_ID,IDX_IMEI,IDX_SERVICE_PPID], unstable_index_name[t_after_services_buy] |
| 1006 | 10.1.250.157 | 2882 | 11150 | 9 | 539 | PHY_TABLE_SCAN | t36(idx_order_id) | 2 | 15 | table_rows:1268, physical_range_rows:1, logical_range_rows:1, index_back_rows:0, output_rows:1, avaiable_index_name[idx_order_id,idx_purchase_id,idx_purchase_in_area_id,t_order_extend], pruned_index_name[idx_purchase_id,idx_purchase_in_area_id,t_order_extend] |
+-----------+--------------+----------+---------+------------+--------------+--------------------------------------------------------+--------------------------------------------+-------+--------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
SCHEMA 信息
obclient > show create table small_oa_169.t_product_stock_detail
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+========================+====================================================================================================================================================================================================================================+
| t_product_stock_detail | CREATE TABLE `t_product_stock_detail` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `mkc_id` bigint(20) NOT NULL COMMENT '商品库存详细id', |
| | `area_id` bigint(20) NOT NULL COMMENT '门店编码', |
| | `ppid` bigint(20) NOT NULL COMMENT '商品规格编码', |
| | `is_mobile` tinyint(1) NOT NULL COMMENT '是否大件', |
| | `imei` varchar(150) DEFAULT NULL COMMENT '小件 入库时间戳10位+当天入库序列5位', |
| | `imei_2` varchar(150) DEFAULT NULL COMMENT '辅助序列号2', |
| | `imei_3` varchar(150) DEFAULT NULL COMMENT '辅助序列号3', |
| | `imei_4` varchar(150) DEFAULT NULL COMMENT '辅助序列号4', |
| | `insource_id` bigint(20) DEFAULT NULL COMMENT '渠道编码', |
| | `inuser_name` varchar(20) DEFAULT NULL COMMENT '入库人名称', |
| | `inuser_id` bigint(20) DEFAULT NULL COMMENT '入库人编号', |
| | `stock_state` int(11) DEFAULT NULL COMMENT '库存状态 1 已提交 2 采购中 3 库存 10 在途 8 已出库 5 已完成 6 售后 11 内完成 14 退货中', |
| | `related_id` bigint(20) DEFAULT NULL COMMENT '关联业务单号', |
| | `related_type` int(11) DEFAULT NULL COMMENT '关联业务类别 1、调拨单 2、退货单 3、报损单 4、维修单(维修单使用小件) 5 采购单', |
| | `instock_time` datetime DEFAULT NULL COMMENT '入库时间', |
| | `instock_detail_id` bigint(20) DEFAULT NULL COMMENT '入库详细单号', |
| | `instock_way` int(11) DEFAULT NULL COMMENT '入库方式 1 经销 2 代销', |
| | `invoice_type` int(11) DEFAULT NULL COMMENT '发票类型(是否带票) 1 带票 0 不带票', |
| | `order_detail_id` bigint(20) DEFAULT NULL COMMENT '锁定订单 单号', |
| | `order_detail_type` int(11) NOT NULL DEFAULT '0' COMMENT '锁定订单 类型 0 未占用 1销售单 2 售后单', |
| | `inprice` decimal(10,2) DEFAULT '0.00' COMMENT '成本', |
| | `is_check` tinyint(1) DEFAULT NULL COMMENT '是否盘点', |
| | `check_user` varchar(20) DEFAULT NULL COMMENT '盘点人', |
| | `check_time` datetime DEFAULT NULL COMMENT '盘点时间', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| | `in_source_modify_price` decimal(10,2) DEFAULT '0.00' COMMENT '供货商调价', |
| | `rebate_price` decimal(10,2) DEFAULT '0.00' COMMENT '返利', |
| | `modify_price` decimal(10,2) DEFAULT '0.00' COMMENT '内部调价', |
| | `transfer_price` decimal(10,2) DEFAULT '0.00' COMMENT '调拨金额', |
| | `return_detail_id` bigint(20) DEFAULT NULL COMMENT '退款详细编号,退款办理时候更新', |
| | `return_type` int(11) DEFAULT NULL COMMENT '退款类型:1、销售单,2、维修单,3、回收机增值,4、分销单', |
| | `statistics_price` decimal(10,2) DEFAULT NULL COMMENT '统计价', |
| | `examine_price` decimal(10,2) DEFAULT NULL COMMENT '考核成本', |
| | `sample_product` tinyint(4) NOT NULL DEFAULT '0' COMMENT '机器类型 0销售机 1样机', |
| | `is_deleted` tinyint(1) DEFAULT '0' COMMENT '逻辑删除:0-未删除;1-已删除', |
| | `stock_number` varchar(50) DEFAULT NULL COMMENT '编号', |
| | `serial_number_mark` bigint(20) DEFAULT NULL COMMENT '序列号标记,对应t_sys_config表code等于97的记录主键', |
| | `finished_time` datetime DEFAULT NULL COMMENT '库龄结算时间:当库存状态转为已完成,内完成时设置该值', |
| | `purchase_write_off` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否已采购核销', |
| | `manage_state` int(11) NOT NULL DEFAULT '0' COMMENT '供应商货物管理枚举 0 无需处理 (默认值) 1.待处理 2 已处理 ', |
| | `manage_handle_id` bigint(20) DEFAULT NULL COMMENT '供应商货物管理 处理人', |
| | `manage_handle_name` varchar(20) DEFAULT NULL COMMENT '供应商货物管理 处理人', |
| | `manage_handle_time` datetime DEFAULT NULL COMMENT '货物管理处理时间', |
| | `arrive_shop_time` datetime DEFAULT NULL COMMENT '到店时间', |
| | `comment` varchar(100) DEFAULT NULL COMMENT '库存备注', |
| | `instock_area_id` bigint(20) DEFAULT NULL COMMENT '入库门店', |
| | `current_insource_id` int(11) DEFAULT NULL COMMENT '当前供应商', |
| | `counts` bigint(20) NOT NULL DEFAULT '1' COMMENT '数量', |
| | `parent_id` bigint(20) DEFAULT NULL COMMENT '父级id', |
| | `priority_flag` bit(1) NOT NULL DEFAULT b'0' COMMENT '优出标记:0.否 1.是', |
| | PRIMARY KEY (`id`), |
| | KEY `productstockdetail_ppid` (`ppid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `productstockdetail_instock_detail_id` (`instock_detail_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `index_area_id` (`area_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductstockdetail_ix_related_id_related_type` (`related_id`, `related_type`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductstockdetail_ix_order_detail_id` (`order_detail_id`, `order_detail_type`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_insource_id` (`insource_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_imei` (`imei`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_imei_2` (`imei_2`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_imei_3` (`imei_3`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_imei_4` (`imei_4`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `t_product_stock_detail_stock_state_IDX` (`stock_state`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `t_product_stock_detail_is_mobile_IDX` (`is_mobile`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `t_product_stock_detail_arrive_shop_time_index` (`arrive_shop_time`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_areaid` (`area_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `index_mck_id` (`mkc_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 1558273 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 |
| | partition by range(id) |
| | (partition `p1` values less than (100000), |
| | partition `p2` values less than (200000), |
| | partition `p3` values less than (300000), |
| | partition `p4` values less than (400000), |
| | partition `p5` values less than (500000), |
| | partition `p6` values less than (600000), |
| | partition `p7` values less than (700000), |
| | partition `p8` values less than (800000), |
| | partition `p9` values less than (900000), |
| | partition `p10` values less than (2000000)) WITH COLUMN GROUP(all columns, each column) |
+------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_product_stock_detail' order by num_rows desc limit 1
+------------------------+------------+
| table_name | num_rows |
+========================+============+
| t_product_stock_detail | 920789 |
+------------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '503275' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 30713533 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_order_detail
+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+================+===============================================================================================================================================================================================================================================================================+
| t_order_detail | CREATE TABLE `t_order_detail` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `order_id` bigint(20) NOT NULL, |
| | `ppid` bigint(20) NOT NULL COMMENT '商品规格编号', |
| | `counts` int(11) NOT NULL COMMENT '数量', |
| | `price` decimal(14,2) NOT NULL DEFAULT '0.00' COMMENT '实际卖价(单价)', |
| | `in_price` decimal(10,2) DEFAULT '0.00' COMMENT '成本(为数量成本合计,存库成本,总数) 汇总', |
| | `sell_price` decimal(14,2) NOT NULL DEFAULT '0.00' COMMENT '原卖价(productinfo价格,单价)', |
| | `statictisc_price` decimal(12,4) DEFAULT '0.0000' COMMENT '统计价(退货价)', |
| | `discount_price` decimal(12,4) DEFAULT '0.0000' COMMENT '优惠码金额', |
| | `point_price` decimal(12,4) DEFAULT '0.0000' COMMENT '积点金额', |
| | `is_mobile` tinyint(1) NOT NULL COMMENT '大小件标识', |
| | `return_price` decimal(10,2) DEFAULT '0.00' COMMENT '退货金额(合计)', |
| | `in_user_name` varchar(20) DEFAULT NULL COMMENT '销售名称', |
| | `in_user_id` bigint(20) NOT NULL COMMENT '销售工号', |
| | `gift_price` decimal(12,4) DEFAULT '0.0000' COMMENT '赠品承担金额', |
| | `detail_parent_id` bigint(20) DEFAULT NULL COMMENT '父级id', |
| | `detail_type` int(11) DEFAULT NULL COMMENT '类别 1赠品', |
| | `jiuxun_service_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '否九讯服务(亚丁保险)0为否 1为是', |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `comment` text DEFAULT NULL COMMENT '备注', |
| | `examine_price` decimal(10,2) DEFAULT '0.00' COMMENT '考核成本', |
| | `market_points` decimal(5,4) DEFAULT '0.0000' COMMENT '商超扣点', |
| | `market_price` decimal(10,2) DEFAULT '0.00' COMMENT '商超扣点金额', |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `cost_price` decimal(10,2) DEFAULT '0.00' COMMENT '大盘成本', |
| | `in_source_modify_price` decimal(10,2) DEFAULT '0.00' COMMENT '供货商调价 汇总', |
| | `modify_price` decimal(10,2) DEFAULT '0.00' COMMENT '内部调价 汇总', |
| | `config` varchar(300) DEFAULT NULL COMMENT '配置', |
| | `renewal_subsidy_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '只是记录换新补贴金额,该字段不计入任何统计', |
| | `display_product` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否是陈列商品', |
| | `display_id` bigint(20) DEFAULT NULL COMMENT '陈列编号', |
| | `customer_benefit_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '会员权益金额', |
| | `reserve_deduction_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '订金预定抵扣金额', |
| | `jiuxun_service_cost_price` decimal(10,2) DEFAULT '0.00' COMMENT '九讯服务成本金额', |
| | `product_stock_type` int(11) NOT NULL DEFAULT '0' COMMENT '商品库存类型:0销售机,1,陈列机,2瑕疵机,3良品', |
| | `recover_stock_id` bigint(20) DEFAULT NULL COMMENT '良品回收库存的id', |
| | `exchange_prize_id` bigint(20) DEFAULT NULL COMMENT '奖品兑换券id', |
| | `virtual_product` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否为虚拟商品', |
| | PRIMARY KEY (`id`), |
| | KEY `index_orderId` (`order_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `torderdetail_ix_ppid` (`ppid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `parent_index` (`detail_parent_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_in_user_id` (`in_user_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_detail_type` (`detail_type`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_product_stock_type` (`product_stock_type`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_is_delete` (`is_delete`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_recover_stock_id` (`recover_stock_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 856980 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 WITH COLUMN GROUP(all columns, each column) |
+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_order_detail' order by num_rows desc limit 1
+----------------+------------+
| table_name | num_rows |
+================+============+
| t_order_detail | 775732 |
+----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '502319' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 46759124 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_order
+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=========+====================================================================================================================================================================================================================================================================================================+
| t_order | CREATE TABLE `t_order` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `order_id` bigint(20) NOT NULL, |
| | `user_id` bigint(20) NOT NULL COMMENT '客户编号', |
| | `order_state` int(11) NOT NULL COMMENT '订单状态 1 已确认 2 已出库 3 已完成 4 删除 5 等待确认 6 欠款 8 退订 9 退款', |
| | `order_pay` int(11) DEFAULT NULL COMMENT '支付方式 对应sys_config ', |
| | `order_delivery` int(11) NOT NULL COMMENT '配送方式 对应sys_config', |
| | `contract_name` varchar(40) DEFAULT NULL COMMENT '联系人', |
| | `contract_mobile` varchar(128) DEFAULT NULL COMMENT '联系电话', |
| | `order_type` int(11) NOT NULL COMMENT '订单类型 对应sys_config', |
| | `order_price` decimal(14,2) NOT NULL COMMENT '订单金额 【商品金额合计-优惠码金额-积点金额】', |
| | `payed_price` decimal(14,2) DEFAULT '0.00' COMMENT '已付款金额', |
| | `discount_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '优惠码金额', |
| | `point_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '积点金额', |
| | `area_id` bigint(20) NOT NULL COMMENT '门店编码', |
| | `comment` varchar(200) DEFAULT NULL COMMENT '备注', |
| | `in_user_name` varchar(20) DEFAULT NULL COMMENT '操作人名称', |
| | `in_user_id` bigint(20) NOT NULL COMMENT '操作人编号', |
| | `expect_arrive_time` timestamp NULL DEFAULT NULL COMMENT '预计到达时间 派送使用', |
| | `expect_del_time` timestamp NULL DEFAULT NULL COMMENT '预计删单时间', |
| | `stock_out_time` timestamp NULL DEFAULT NULL COMMENT '出库时间', |
| | `order_complete_time` timestamp NULL DEFAULT NULL COMMENT '订单交易时间', |
| | `order_parent_id` bigint(20) DEFAULT NULL COMMENT '订单父级编号', |
| | `return_time` timestamp NULL DEFAULT NULL COMMENT '退货时间', |
| | `lock_type` int(11) DEFAULT NULL COMMENT '订单锁定类别 1 提交订单请求 后续扩展', |
| | `trader_name` varchar(20) DEFAULT NULL COMMENT '交易人名称', |
| | `trader_id` int(11) DEFAULT NULL COMMENT '交易人编号', |
| | `access_code` varchar(8) DEFAULT NULL COMMENT '取机码', |
| | `is_used` tinyint(1) DEFAULT '0' COMMENT '取机码是否校验过(0未校验过1已校验过)', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `show_web` tinyint(1) DEFAULT '1' COMMENT 'M端是否展示,控制M端订单删除', |
| | `voucher_record_id` bigint(20) DEFAULT NULL COMMENT '记账主表id', |
| | `use_renewal_subsidy` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否使用换新补贴', |
| | `renewal_subsidy_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '换新补贴金额', |
| | `use_discount` bit(1) DEFAULT b'0' COMMENT '是否使用优惠码', |
| | `customer_type` smallint(6) NOT NULL DEFAULT '0' COMMENT '客户类型 OrderSourceSearchEnum', |
| | `is_deposit` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否是定金单', |
| | `reserve_deduction_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '订金预定抵扣金额', |
| | `exception_lock` bit(1) NOT NULL DEFAULT b'0' COMMENT '异常订单锁定', |
| | `unlock_user_id` bigint(20) DEFAULT NULL COMMENT '解锁用户ID', |
| | `is_hide` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'C端订单是否隐藏', |
| | `invoice_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '开票状态:0.未开票 1.待开票 2.已开票', |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `torder_ix_order_id` (`order_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `torder_ix_user_id` (`user_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `torder_ix_area_id` (`area_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `torder_ix_complete_time` (`order_complete_time`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_order_parent_id` (`order_parent_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_order_state` (`order_state`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_in_user_id` (`in_user_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_return_time` (`return_time`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_trader_id` (`trader_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_is_delete` (`is_delete`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_contract_mobile` (`contract_mobile`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 450068 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '订单主表' WITH COLUMN GROUP(all columns, each column) |
+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_order' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_order | 428132 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '502330' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 37464481 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_product_info
+----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+================+====================================================================================================================================================================================================+
| t_product_info | CREATE TABLE `t_product_info` ( |
| | `ppriceid` bigint(20) NOT NULL COMMENT 'ppid', |
| | `productid` bigint(20) NOT NULL COMMENT '商品id', |
| | `product_name` varchar(200) DEFAULT NULL COMMENT '商品名称', |
| | `product_color` varchar(500) DEFAULT NULL COMMENT '商品规格', |
| | `cost_price` decimal(18,2) DEFAULT NULL COMMENT '成本价', |
| | `distribution_price` decimal(18,2) DEFAULT NULL COMMENT '分销价', |
| | `vip_price` decimal(18,2) DEFAULT NULL COMMENT '小店价', |
| | `cid` bigint(20) DEFAULT NULL COMMENT '分类', |
| | `is_mobile` bit(1) DEFAULT b'0' COMMENT '是否是大件', |
| | `member_price` decimal(18,2) DEFAULT '0.00' COMMENT '会员价', |
| | `que` tinyint(4) NOT NULL DEFAULT '0' COMMENT ' ppid状态:0.正常 1.缺货 2.下市 3.预约 4.有货', |
| | `display` bit(1) DEFAULT NULL COMMENT '上下架', |
| | `is_del` tinyint(1) DEFAULT NULL COMMENT '是否删除', |
| | `views_week` int(11) DEFAULT NULL, |
| | `ppriceid1` bigint(20) DEFAULT NULL, |
| | `config` varchar(300) DEFAULT NULL COMMENT '配置', |
| | `brand_id` int(11) DEFAULT NULL COMMENT '品牌id', |
| | `cid_family` varchar(50) DEFAULT NULL COMMENT '分类树', |
| | `views_weekr` int(11) DEFAULT NULL, |
| | `rank` int(11) DEFAULT NULL COMMENT 'sku排序值', |
| | `no_promotion` tinyint(4) NOT NULL DEFAULT '1' COMMENT '特价商品', |
| | `bar_code` varchar(50) DEFAULT NULL COMMENT '69码', |
| | `is_bar_code` tinyint(1) DEFAULT '1' COMMENT '是否启用条码', |
| | `product_color_ids` varchar(200) DEFAULT NULL COMMENT '规格id拼接的字符串', |
| | `psort` int(11) DEFAULT NULL COMMENT '商品排序值', |
| | `add_date` date DEFAULT NULL COMMENT '商品添加时间', |
| | `product_color_id` varchar(20) DEFAULT NULL COMMENT '商品规格id字符串', |
| | `b_pic` varchar(255) DEFAULT NULL, |
| | `buy_limit` int(11) DEFAULT NULL, |
| | `oa_enable` tinyint(1) DEFAULT NULL COMMENT 'OA是否启用', |
| | `bar_code_count` tinyint(4) NOT NULL DEFAULT '0' COMMENT '商品条码【69码的条数】', |
| | `source` int(11) NOT NULL DEFAULT '0' COMMENT '0-默认;1-拍机堂', |
| | PRIMARY KEY (`ppriceid`), |
| | KEY `tproductinfo_productid` (`productid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductinfo_cid` (`cid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductinfo_ismobile` (`is_mobile`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductinfo_ppriceid1` (`ppriceid1`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductinfo_barCode` (`bar_code`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `product_name_IDX` (`product_name`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tproductinfo_ix_views` (`views_week`, `views_weekr`, `member_price`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_source` (`source`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_brand_id` (`brand_id`) BLOCK_SIZE 16384 LOCAL |
| | ) DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '产品信息表' |
+----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_product_info' order by num_rows desc limit 1
+----------------+------------+
| table_name | num_rows |
+================+============+
| t_product_info | 426212 |
+----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501446' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 14508479 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_user
+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=========+======================================================================================================================================================================================================================================================+
| t_user | CREATE TABLE `t_user` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '会员编号', |
| | `user_name` varchar(40) DEFAULT NULL COMMENT '会员名称', |
| | `nick_name` varchar(40) DEFAULT NULL COMMENT '昵称', |
| | `user_mobile` varchar(14) DEFAULT NULL COMMENT '会员电话', |
| | `user_pwd` varchar(100) DEFAULT NULL COMMENT '用户密码', |
| | `pwd_salt` varchar(10) DEFAULT NULL COMMENT '密码盐值', |
| | `regist_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '用户注册时间', |
| | `user_sex` tinyint(1) DEFAULT NULL COMMENT '用户性别 1 男 女 0', |
| | `real_name` varchar(40) DEFAULT NULL COMMENT '真实姓名', |
| | `user_level` int(11) DEFAULT '1' COMMENT '会员级别', |
| | `points` bigint(20) NOT NULL DEFAULT '0' COMMENT '可用积分', |
| | `total_points` bigint(20) NOT NULL DEFAULT '0' COMMENT '总积分', |
| | `growth_value` bigint(20) DEFAULT '0' COMMENT '成长值', |
| | `contribution` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'G值:即用户贡献度作为用户成长值的补充,体现客户对公司带来的毛利', |
| | `contribution_rate` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT 'G值率:G值/用户成长值', |
| | `in_user_name` varchar(20) DEFAULT NULL COMMENT '添加人名称', |
| | `in_user_id` bigint(20) DEFAULT NULL COMMENT '添加人编号', |
| | `birthday` date DEFAULT NULL COMMENT '生日', |
| | `area_id` bigint(20) DEFAULT NULL COMMENT '注册地区', |
| | `last_area_id` bigint(20) DEFAULT NULL COMMENT '最后一次消费门店', |
| | `last_two_times_area_id` bigint(20) DEFAULT NULL COMMENT '上上次消费门店', |
| | `buy_area_ids` varchar(2048) DEFAULT '' COMMENT '曾经购买过的门店集合', |
| | `last_buy_time` datetime DEFAULT NULL COMMENT '最后一次购买时间', |
| | `last_two_times_login_time` datetime DEFAULT NULL COMMENT '上上次购买时间', |
| | `last_two_times_buy_time` datetime DEFAULT NULL COMMENT '上上次购买时间', |
| | `big_change_or_return_count` int(11) NOT NULL DEFAULT '0' COMMENT '大件商品退换货次数', |
| | `small_change_or_return_count` int(11) NOT NULL DEFAULT '0' COMMENT '小件商品退换货次数', |
| | `recover_count` int(11) NOT NULL DEFAULT '0' COMMENT '旧机回收次数', |
| | `in_use_mobile_product_id` bigint(20) DEFAULT NULL COMMENT '当前在用手机型号(最后一次购买手机的机型)', |
| | `pay_pwd` varchar(100) DEFAULT NULL COMMENT '支付密码', |
| | `pay_pwd_salt` varchar(10) DEFAULT NULL COMMENT '支付密码盐值', |
| | `label_id_list` text DEFAULT NULL COMMENT '会员标签集合', |
| | `special_type` bigint(20) DEFAULT NULL COMMENT '特二会员', |
| | `black_list_type` varchar(128) DEFAULT NULL COMMENT '黑名单', |
| | `last_login_client` varchar(20) DEFAULT NULL COMMENT '最后一次登录端', |
| | `balance` decimal(13,4) NOT NULL DEFAULT '0.0000' COMMENT '余额', |
| | `company_balance` decimal(13,4) NOT NULL DEFAULT '0.0000' COMMENT '企业客户余额', |
| | `balance_back` decimal(13,4) DEFAULT NULL COMMENT '企业客户余额备份数据', |
| | `comment` varchar(200) DEFAULT NULL COMMENT '备注', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| | `user_type` int(11) DEFAULT NULL COMMENT '会员类型 0普通会员 1 政企客户 2 分销客户', |
| | `login_times` bigint(20) NOT NULL DEFAULT '0' COMMENT '用户登录次数', |
| | `last_login_time` timestamp NULL DEFAULT NULL COMMENT '上次登录时间', |
| | `limit_balance` decimal(13,4) DEFAULT '0.0000' COMMENT '额度', |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `register_source` int(11) DEFAULT '-1' COMMENT '注册来源:-1(期初导入)0(商城端注册)', |
| | `cancel_status` int(11) NOT NULL DEFAULT '0' COMMENT '账号注销状态 0-未注销 1-已注销', |
| | `cancel_time` datetime DEFAULT NULL COMMENT '账号注销时间', |
| | `sub_tenant` int(11) NOT NULL DEFAULT '0' COMMENT '所属平台', |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `t_user_mobile_UN` (`user_mobile`, `sub_tenant`) BLOCK_SIZE 16384 LOCAL, |
| | UNIQUE KEY `t_user_name_UN` (`user_name`, `sub_tenant`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `tuser_ix_user_level` (`user_level`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `regist_time_index` (`regist_time`) BLOCK_SIZE 16384 LOCAL COMMENT '用户注册时间' |
| | ) AUTO_INCREMENT = 236892 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '会员表' |
+---------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_user' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_user | 236695 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '502100' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 13458220 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_return_detail
+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=================+=======================================================================================================================================================================================================================================================+
| t_return_detail | CREATE TABLE `t_return_detail` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `order_detail_id` bigint(20) NOT NULL COMMENT '订单详细编号', |
| | `return_count` int(11) NOT NULL COMMENT '退款数量', |
| | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `mkc_id` bigint(20) DEFAULT NULL COMMENT '大件库存id', |
| | `return_price` decimal(10,2) DEFAULT NULL COMMENT '退款金额', |
| | `return_id` bigint(20) NOT NULL, |
| | `buy_price` decimal(10,2) NOT NULL COMMENT '购买价', |
| | `in_price` decimal(10,2) NOT NULL, |
| | `to_stock_time` datetime DEFAULT NULL COMMENT '转库存时间', |
| | `ppid` bigint(20) NOT NULL, |
| | `is_mobile` tinyint(4) NOT NULL, |
| | `product_stock_type` tinyint(1) DEFAULT '0' COMMENT '商品类型:0、销售机,1、陈列机,2、瑕疵机,3、良品', |
| | `order_detail_type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '关联的单号类型:1-订单明细表,2-寄售表', |
| | `price_protection_config_id` bigint(20) NOT NULL DEFAULT '-1' COMMENT '价保配置ID', |
| | `renew_sku_id` bigint(20) DEFAULT NULL COMMENT '质保换新时换购的商品skuId', |
| | PRIMARY KEY (`id`), |
| | KEY `idx_order_detail_id` (`order_detail_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_return_detail_return_id` (`return_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_mkc_id` (`mkc_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 15553 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '退款明细' |
+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_return_detail' order by num_rows desc limit 1
+-----------------+------------+
| table_name | num_rows |
+=================+============+
| t_return_detail | 15552 |
+-----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501825' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 388835 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_return
+----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+==========+=========================================================================================================================================================================================================================================================+
| t_return | CREATE TABLE `t_return` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `return_type` int(11) NOT NULL COMMENT '退款类型 1 订单退订 2 订单退款 3 售后维修退订 4 订单换购 5转售单退订', |
| | `return_type_name` varchar(20) DEFAULT NULL COMMENT '退款类型名称', |
| | `return_way` varchar(20) DEFAULT NULL COMMENT '退款方式名称', |
| | `original_order_id` bigint(20) DEFAULT NULL COMMENT '订单号关联的父级订单', |
| | `order_id` bigint(20) NOT NULL COMMENT '订单号', |
| | `in_user_id` bigint(20) NOT NULL COMMENT '提交人编号', |
| | `in_user_name` varchar(20) DEFAULT NULL COMMENT '提交人名称', |
| | `card_name` varchar(20) DEFAULT NULL COMMENT '银行转账 账户名', |
| | `card_num` varchar(50) DEFAULT NULL COMMENT '银行转账 卡号', |
| | `card_bank_name` varchar(50) DEFAULT NULL COMMENT '银行转账 开户行', |
| | `return_price` decimal(10,2) NOT NULL COMMENT '退款金额', |
| | `buy_price` decimal(10,2) DEFAULT NULL COMMENT '购买金额', |
| | `new_order_id` bigint(20) DEFAULT NULL COMMENT '换其他型号对应单号', |
| | `new_order_price` decimal(10,2) DEFAULT NULL COMMENT '换其他型号充值到订单金额', |
| | `check1_user_name` varchar(20) DEFAULT NULL COMMENT '审核1员工', |
| | `check1_time` timestamp NULL DEFAULT NULL COMMENT '审核1时间', |
| | `check2_user_name` varchar(20) DEFAULT NULL COMMENT '审核2员工', |
| | `check2_time` timestamp NULL DEFAULT NULL COMMENT '审核2时间', |
| | `comment` varchar(500) NOT NULL DEFAULT '' COMMENT '备注', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `area_id` bigint(20) NOT NULL COMMENT '门店编码', |
| | `in_price` decimal(10,2) DEFAULT NULL COMMENT '成本', |
| | `real_return_price` decimal(10,2) DEFAULT NULL COMMENT '实际退款金额 如果是退款real_return_price=return_price 换其他型号 return_price=real_return_price+new_order_price', |
| | `fail_reason` varchar(255) DEFAULT NULL COMMENT '退款失败原因', |
| | `fail_handle_status` tinyint(4) DEFAULT '0' COMMENT '失败处理状态:0-无需处理-1未处理,2已处理', |
| | `payment_bill_id` bigint(20) DEFAULT NULL COMMENT '退款时生成付款单单号id', |
| | `account_id` bigint(20) DEFAULT NULL COMMENT '银行卡支付时的账户id', |
| | `voucher_record_id` bigint(20) DEFAULT NULL COMMENT '凭证id', |
| | `is_take` tinyint(1) DEFAULT NULL COMMENT '是否取机', |
| | `operation_mark` tinyint(1) NOT NULL DEFAULT '0' COMMENT '运营商商品返销退订 1 是 ', |
| | `status` int(11) NOT NULL DEFAULT '1' COMMENT '订单状态 1 已提交 2 已审核 3 已办理', |
| | `order_area_id` bigint(20) DEFAULT NULL COMMENT '订单门店id 维修单接件门店 转售单门店 。冗余字段', |
| | `user_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '客户ID', |
| | `pjt_type` int(11) NOT NULL DEFAULT '1' COMMENT '代拍商品类型,只有退款单类型是代拍商品时,该字段有意义,默认opt', |
| | PRIMARY KEY (`id`), |
| | KEY `treturn_ix_return_type` (`return_type`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `treturn_ix_check2_time` (`check2_time`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `treturn_ix_return_way` (`return_way`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `treturn_ix_create_time` (`create_time`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `treturn_ix_area_id` (`area_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_orginal_order_id` (`original_order_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 15953 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '退款信息表' |
+----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_return' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_return | 15920 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501818' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 818203 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_depart_info
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+===============+==============================================================================================================================================================================================================================================================+
| t_depart_info | CREATE TABLE `t_depart_info` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', |
| | `depart_parent_id` bigint(20) NOT NULL COMMENT '组织架构父级编码', |
| | `city_id` int(11) DEFAULT NULL COMMENT '城市编码', |
| | `area_address` varchar(100) DEFAULT NULL COMMENT '门店地址', |
| | `company_tel` varchar(20) DEFAULT NULL COMMENT '门店电话', |
| | `area` varchar(30) DEFAULT NULL COMMENT '门店编码', |
| | `depart_name` varchar(50) DEFAULT NULL COMMENT '门店名称', |
| | `store_area_id` bigint(20) DEFAULT NULL COMMENT '门店仓库编码', |
| | `print_name` varchar(50) DEFAULT '' COMMENT '打印名称', |
| | `show_web` tinyint(1) DEFAULT '1' COMMENT '网站显示', |
| | `support_delivery` tinyint(1) DEFAULT '0' COMMENT '支持派送', |
| | `depart_rank` int(11) DEFAULT NULL, |
| | `area_level` varchar(50) DEFAULT NULL COMMENT '门店级别 未分级、一级、二级、三级、四级、五级', |
| | `start_time` datetime DEFAULT NULL COMMENT '开业时间', |
| | `working_time` varchar(50) DEFAULT '' COMMENT '营业时间', |
| | `longitude` varchar(1000) DEFAULT '' COMMENT '店面位置(经纬度)', |
| | `tips` varchar(255) DEFAULT NULL COMMENT '温馨提示', |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', |
| | `depart_type` tinyint(4) NOT NULL COMMENT '类别 1、主要 2、门店', |
| | `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', |
| | `area_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '门店类型 0 无 1 门店 2 仓库 3 分销仓', |
| | `business_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 不开通 1 开通', |
| | `introduction` varchar(255) DEFAULT NULL COMMENT '门店介绍', |
| | `picture` varchar(255) DEFAULT NULL COMMENT '门店图片', |
| | `small_picture` varchar(255) DEFAULT NULL COMMENT '门店小图片', |
| | `surrounding_traffic` varchar(255) DEFAULT NULL COMMENT '周边交通', |
| | `identity_code` tinyint(4) DEFAULT NULL COMMENT '是否开启识别码加单', |
| | `add_order_mode` int(11) NOT NULL DEFAULT '0' COMMENT '默认使用加单方式', |
| | `announcement` varchar(1024) DEFAULT NULL COMMENT '门店公告', |
| | `first_admin` bigint(20) DEFAULT NULL COMMENT '第一负责人', |
| | `second_admin` bigint(20) DEFAULT NULL COMMENT '第二负责人', |
| | `depart_attribute` int(11) DEFAULT NULL COMMENT '门店属性', |
| | `msg_switch` tinyint(1) NOT NULL DEFAULT '1' COMMENT '短信发送开关,默认开启1,不开启0', |
| | `sign` varchar(64) DEFAULT NULL COMMENT '短信签名', |
| | `integral_rule` bigint(20) DEFAULT NULL COMMENT '绑定的积分发放规则', |
| | `precisions` int(11) DEFAULT NULL COMMENT '精度', |
| | `sector_type` int(11) NOT NULL DEFAULT '1' COMMENT '区域类型 1 部门 2 小区 3 大区', |
| | `accounting_body_id` int(11) NOT NULL DEFAULT '0' COMMENT '核算主体', |
| | `sub_tenant` int(11) NOT NULL DEFAULT '0' COMMENT '归属平台', |
| | `sync_status` bit(1) NOT NULL DEFAULT b'0' COMMENT '鼎霖物流中台跑腿门店同步状态:0.未同步1.已同步', |
| | PRIMARY KEY (`id`), |
| | KEY `tdepartinfo_ix1` (`city_id`, `is_delete`, `depart_type`, `area_type`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 237 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '组织架构/门店信息' |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_depart_info' order by num_rows desc limit 1
+---------------+------------+
| table_name | num_rows |
+===============+============+
| t_depart_info | 236 |
+---------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '500639' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 16995 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_special_user
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+================+===================================================================================================================================================================================================================================+
| t_special_user | CREATE TABLE `t_special_user` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `user_id` bigint(20) DEFAULT NULL, |
| | `company_city_id` bigint(20) DEFAULT NULL COMMENT '公司省市区 编号', |
| | `user_type` tinyint(4) DEFAULT NULL COMMENT '用户类别 1 政企 2 批发', |
| | `company_name` varchar(100) DEFAULT NULL COMMENT '公司名称', |
| | `contract_name` varchar(20) DEFAULT NULL COMMENT '联系人', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `mobile` varchar(16) NOT NULL DEFAULT '' COMMENT '电话', |
| | `limit_day` int(11) DEFAULT NULL COMMENT '账期天数', |
| | `timing_day` timestamp NULL DEFAULT NULL COMMENT '账期开始时间', |
| | `id_card` varchar(32) DEFAULT NULL COMMENT '身份证号', |
| | `scale` tinyint(4) DEFAULT NULL COMMENT '企业规模 0微型 1小型 2中型 3大型 4 特大型', |
| | `taxpayer_number` varchar(32) DEFAULT NULL COMMENT '纳税人识别号', |
| | `bank_card_number` varchar(50) DEFAULT NULL COMMENT '银行卡号', |
| | `bank_name` varchar(32) DEFAULT NULL COMMENT '开户行名称', |
| | `bank_address` varchar(64) DEFAULT NULL COMMENT '开户行地址', |
| | `bank_phone` varchar(16) DEFAULT NULL COMMENT '开户行电话', |
| | `image` varchar(255) DEFAULT NULL COMMENT '相关图片', |
| | `special_username` varchar(128) NOT NULL DEFAULT '' COMMENT '分销客户名称', |
| | `pinyin_full_name` varchar(2000) DEFAULT NULL COMMENT '渠道拼音全称', |
| | `pinyin_short_name` varchar(2000) DEFAULT NULL COMMENT '渠道拼音简称', |
| | `disabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否禁用该企业客户(0为不禁用,1为禁用)', |
| | `special_level` int(11) DEFAULT NULL COMMENT '客户登记 1.一级 2 二级 3三级 4:四级 5:五级 6 六级', |
| | `link_company_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为关联公司渠道,默认值为否', |
| | `link_company_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联公司id,默认值为0', |
| | `company_address` varchar(255) DEFAULT NULL COMMENT '公司地址', |
| | `company_mobile` varchar(50) DEFAULT NULL COMMENT '公司电话', |
| | `invoice_header` varchar(255) DEFAULT NULL COMMENT '发票抬头', |
| | `company_balance` decimal(14,2) NOT NULL DEFAULT '0.00' COMMENT '企业客户余额', |
| | `limit_balance` decimal(14,2) NOT NULL DEFAULT '0.00' COMMENT '额度', |
| | `user_city_id` int(11) DEFAULT NULL COMMENT '客户城市编码(省市县id)', |
| | `user_address` varchar(255) DEFAULT NULL COMMENT '客户详细地址', |
| | `bak_id` bigint(20) DEFAULT NULL, |
| | `comment` varchar(120) DEFAULT NULL, |
| | `distribution_warehouse_id` bigint(20) DEFAULT NULL COMMENT '分销仓id', |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `un_idx_special_username` (`special_username`) BLOCK_SIZE 16384 LOCAL, |
| | UNIQUE KEY `un_idx_special_user_id` (`user_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 151480 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 |
+----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_special_user' order by num_rows desc limit 1
+----------------+------------+
| table_name | num_rows |
+================+============+
| t_special_user | 320 |
+----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501933' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 19042 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_product_label
+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=================+===============================================================================================================================================================================================================================================================+
| t_product_label | CREATE TABLE `t_product_label` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id', |
| | `product_id` bigint(20) NOT NULL COMMENT '商品id', |
| | `label_id` bigint(20) NOT NULL COMMENT '商品标签', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(1) DEFAULT '0', |
| | `label_family` varchar(50) NOT NULL COMMENT '标签树', |
| | PRIMARY KEY (`id`), |
| | KEY `index_label_id` (`label_id`) BLOCK_SIZE 16384 LOCAL COMMENT '标签id', |
| | KEY `product_index` (`product_id`) BLOCK_SIZE 16384 LOCAL COMMENT '商品id' |
| | ) AUTO_INCREMENT = 5 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '商品和标签的绑定关系' |
+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_product_label' order by num_rows desc limit 1
+-----------------+------------+
| table_name | num_rows |
+=================+============+
| t_product_label | 2 |
+-----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501470' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 524 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_label
+---------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=========+===================================================================================================================================================================================================================================================+
| t_label | CREATE TABLE `t_label` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `label_name` varchar(255) NOT NULL COMMENT '标签名称', |
| | `remark` varchar(200) DEFAULT NULL COMMENT '标签备注', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(1) DEFAULT '0', |
| | `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', |
| | `level` int(11) NOT NULL DEFAULT '1' COMMENT '标签级别', |
| | `parent_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '父级标签id', |
| | `path` varchar(50) DEFAULT NULL, |
| | PRIMARY KEY (`id`) |
| | ) AUTO_INCREMENT = 4 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '商品标签' |
+---------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_label' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_label | 3 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '500997' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 655 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_order_extend
+----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+================+=================================================================================================================================================================================================================================+
| t_order_extend | CREATE TABLE `t_order_extend` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `order_id` bigint(20) NOT NULL COMMENT '订单号', |
| | `order_type` int(11) NOT NULL DEFAULT '1' COMMENT '单据类型', |
| | `purchase_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '生成的采购单id', |
| | `purchase_in_area_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '采购入库门店id', |
| | `purchase_in_stock_way` int(11) NOT NULL DEFAULT '0' COMMENT '采购入库方式:1经销,2代销', |
| | `purchase_invoice_flag` tinyint(4) NOT NULL DEFAULT '-1' COMMENT '采购单 是否含税', |
| | `purchase_company_id` int(11) NOT NULL DEFAULT '0' COMMENT '采购公司id', |
| | `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', |
| | `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', |
| | `is_delete` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否逻辑删除', |
| | `split_type` int(11) NOT NULL DEFAULT '0' COMMENT '订单拆单类型枚举.0:正常提交,1:手动拆单,2:退换拆单,3:追加增值服务', |
| | `aux_sale_man_ids` varchar(1024) NOT NULL DEFAULT '' COMMENT '辅助销售人id集合', |
| | `aux_sale_man_names` varchar(2048) NOT NULL DEFAULT '' COMMENT '辅助销售人姓名集合', |
| | PRIMARY KEY (`id`), |
| | KEY `idx_order_id` (`order_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_purchase_id` (`purchase_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_purchase_in_area_id` (`purchase_in_area_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 1270 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 |
+----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_order_extend' order by num_rows desc limit 1
+----------------+------------+
| table_name | num_rows |
+================+============+
| t_order_extend | 1268 |
+----------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501168' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 12692 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_product_adjust_price_detail
+-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+===============================+==============================================================================================================================================================================================================================================================+
| t_product_adjust_price_detail | CREATE TABLE `t_product_adjust_price_detail` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `adjust_price_id` bigint(20) NOT NULL COMMENT '返利调价单据号', |
| | `ppid` bigint(20) DEFAULT NULL COMMENT '商品sku编号', |
| | `is_mobile` tinyint(1) DEFAULT NULL COMMENT '是否大件', |
| | `mkc_id` bigint(20) DEFAULT NULL COMMENT '库存mkcId', |
| | `in_stock_detail_id` bigint(20) DEFAULT NULL COMMENT '入库详细编号', |
| | `counts` int(11) DEFAULT '0' COMMENT '数量', |
| | `original_price` decimal(16,4) DEFAULT NULL COMMENT '调整前单价', |
| | `adjust_price` decimal(16,4) DEFAULT NULL COMMENT '调整金额', |
| | `final_price` decimal(16,4) DEFAULT NULL COMMENT '调整后单价=调整前单价-调整金额', |
| | `comment` varchar(200) DEFAULT NULL COMMENT '备注', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间', |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `is_adjust_after_trade` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否交易后调价(0-否,1-是)', |
| | `in_source_id` bigint(20) DEFAULT NULL COMMENT '原始供应商id', |
| | `area_id` bigint(20) DEFAULT NULL, |
| | `unified_adjust_price` decimal(16,4) DEFAULT NULL COMMENT '统一调价金额(单价)', |
| | `stock_location_area_id` bigint(20) DEFAULT NULL COMMENT '调价损失部门', |
| | `settle_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '预挂确认金额', |
| | `settle_status` int(11) NOT NULL DEFAULT '1' COMMENT '挂账结算状态', |
| | PRIMARY KEY (`id`), |
| | KEY `trebate_detail_ppid` (`ppid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `trebate_detail_mkc_id` (`mkc_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_adjust_price_id` (`adjust_price_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `idx_in_stock_detail_id` (`in_stock_detail_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 174823 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '返利调价明细表' |
+-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_product_adjust_price_detail' order by num_rows desc limit 1
+-------------------------------+------------+
| table_name | num_rows |
+===============================+============+
| t_product_adjust_price_detail | 174768 |
+-------------------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501363' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 1422680 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_product_adjust_price
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+========================+==========================================================================================================================================================================================================================================================+
| t_product_adjust_price | CREATE TABLE `t_product_adjust_price` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `title` varchar(50) DEFAULT NULL COMMENT '标题', |
| | `in_source_id` bigint(20) DEFAULT NULL COMMENT '供货商', |
| | `type` tinyint(4) NOT NULL COMMENT '操作类型 1返利 2 供应商调价 3 内部调价', |
| | `account_date` date DEFAULT NULL COMMENT '记账日期', |
| | `status` tinyint(4) NOT NULL COMMENT '状态 1 已提交、2 已审核、3 已完成 4 已删除', |
| | `in_user_id` bigint(20) DEFAULT NULL COMMENT '操作人编号', |
| | `in_user_name` varchar(50) DEFAULT NULL COMMENT '操作人名称', |
| | `checked_time` timestamp NULL DEFAULT NULL COMMENT '审核时间', |
| | `checked_user_id` bigint(20) DEFAULT NULL COMMENT '审核人编号', |
| | `checked_user_name` varchar(50) DEFAULT NULL COMMENT '审核人名称', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间', |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `handle_time` timestamp NULL DEFAULT NULL COMMENT '办理时间', |
| | `handle_user_id` bigint(20) DEFAULT NULL COMMENT '办理人id', |
| | `handle_user_name` varchar(20) DEFAULT NULL COMMENT '办理人姓名', |
| | `comment` varchar(500) DEFAULT NULL COMMENT '备注', |
| | `related_goods` tinyint(1) DEFAULT NULL COMMENT '是否关联商品 1 是关联商品 0 不关联商品', |
| | `area_id` bigint(20) DEFAULT NULL COMMENT '小件核算部门', |
| | `across_channel_adjust_price` int(11) NOT NULL DEFAULT '0' COMMENT '是否是跨渠道价保:1-是;0不是', |
| | `written_off_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '已核销金额', |
| | `adjust_price_product_range` tinyint(4) NOT NULL DEFAULT '2' COMMENT '调价商品范围:1.按门店 2.按入库单', |
| | `loss_department_type` tinyint(4) NOT NULL DEFAULT '2' COMMENT '成本调整损失部门类型:1.按库存所在地区 2.按门店', |
| | `adjust_mode` tinyint(4) NOT NULL DEFAULT '1' COMMENT '调整方式:1.固定降价 2.统一成本', |
| | `pre_hanging` int(11) NOT NULL DEFAULT '1' COMMENT '返利预挂 1是默认值 不预挂 2 预挂', |
| | `parent_adjust_id` int(11) NOT NULL DEFAULT '-1' COMMENT '返利预挂父级id,有损益生成相反的返利条件单关联的返利调价单', |
| | `operator_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否运营商返利', |
| | `operator_return_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '运营商返利退款状态处理 0 没处理过,1 退款已处理', |
| | PRIMARY KEY (`id`), |
| | KEY `table_index` (`type`, `status`, `handle_time`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 9358 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '返利调价主表' |
+------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_product_adjust_price' order by num_rows desc limit 1
+------------------------+------------+
| table_name | num_rows |
+========================+============+
| t_product_adjust_price | 9269 |
+------------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501361' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 350218 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_sys_config
+--------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+==============+========================================================================================================================================================================================================================================================+
| t_sys_config | CREATE TABLE `t_sys_config` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `name` text DEFAULT NULL COMMENT '名称', |
| | `value` text DEFAULT NULL COMMENT '值', |
| | `desc` text DEFAULT NULL, |
| | `code` bigint(20) NOT NULL COMMENT '类型 枚举值 (与ConfigEnum 中对应起来,都要维护)', |
| | `rank` int(11) DEFAULT NULL COMMENT '排序', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `is_switch` tinyint(1) NOT NULL COMMENT '是否是单条记录 0否 1是', |
| | `disable` tinyint(1) NOT NULL DEFAULT '0' COMMENT '系统配置客户选择是否禁用 0 不禁用 1 禁用', |
| | `spare` varchar(255) DEFAULT NULL COMMENT '备用字段 后续拓展根绝type区分', |
| | `spare2` varchar(255) DEFAULT NULL COMMENT '备用字段2', |
| | `can_back` int(11) NOT NULL DEFAULT '0' COMMENT '是否支持原路径退 0 是不支持 1 是支持', |
| | `invoicing_deduction` int(11) NOT NULL DEFAULT '0' COMMENT '是否开票扣除 0是不扣除 1 扣除', |
| | `fee_rate` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT '到账结算手续费用', |
| | `fee_account_code` varchar(20) DEFAULT ' ' COMMENT '手续费费用科目', |
| | PRIMARY KEY (`id`) |
| | ) AUTO_INCREMENT = 2302 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '系统配置表' |
+--------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_sys_config' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_sys_config | 655 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501959' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 34910 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_finance_accounting_body
+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+===========================+====================================================================================================================================================================================================+
| t_finance_accounting_body | CREATE TABLE `t_finance_accounting_body` ( |
| | `id` int(11) NOT NULL COMMENT '主键id', |
| | `name` varchar(128) NOT NULL COMMENT '核算主体/账套名称', |
| | `account_set_code` int(11) NOT NULL COMMENT '账套code', |
| | `default_flag` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否默认账套', |
| | `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', |
| | `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', |
| | `is_delete` bit(1) NOT NULL DEFAULT b'0' COMMENT '逻辑删除', |
| | PRIMARY KEY (`id`) |
| | ) DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '核销主体表' |
+---------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_finance_accounting_body' order by num_rows desc limit 1
+---------------------------+------------+
| table_name | num_rows |
+===========================+============+
| t_finance_accounting_body | 1 |
+---------------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '500823' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 540 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_operator_business
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=====================+=========================================================================================================================================================================================================================================================+
| t_operator_business | CREATE TABLE `t_operator_business` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `order_detail_id` bigint(20) DEFAULT NULL COMMENT '订单详情编号', |
| | `in_user_id` bigint(20) DEFAULT NULL COMMENT '操作人编号', |
| | `in_user_name` varchar(20) DEFAULT NULL, |
| | `phone` varchar(20) DEFAULT NULL COMMENT '手机号', |
| | `imei` varchar(150) DEFAULT NULL COMMENT '串号', |
| | `create_time` datetime DEFAULT CURRENT_TIMESTAMP, |
| | `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `ppid` bigint(20) NOT NULL, |
| | `operator_type` bigint(20) DEFAULT NULL COMMENT '运营商类别', |
| | `activity_id` bigint(20) DEFAULT NULL COMMENT '活动id', |
| | `agency_point` decimal(15,2) DEFAULT NULL COMMENT '代办积分', |
| | `status` bigint(20) NOT NULL DEFAULT '0' COMMENT '状态 0带办理 1已办理 2已返销', |
| | `handle_user` bigint(20) DEFAULT NULL COMMENT '办理人', |
| | `handle_time` datetime DEFAULT NULL COMMENT '办理时间', |
| | `return_user` bigint(20) DEFAULT NULL COMMENT '返销人', |
| | `return_time` datetime DEFAULT NULL COMMENT '返销时间', |
| | `pay_way` varchar(50) DEFAULT NULL COMMENT '支付方式', |
| | `operator_cost` decimal(9,2) DEFAULT NULL COMMENT '扣减运营商预存款', |
| | `estimate_commission` decimal(9,2) DEFAULT NULL COMMENT '预估佣金', |
| | `settlement_price` decimal(9,2) DEFAULT NULL COMMENT '结算金额', |
| | `deduction_price` decimal(9,2) DEFAULT NULL COMMENT '抵扣金额', |
| | `practical_commission` decimal(9,2) DEFAULT NULL COMMENT '实际佣金', |
| | `channel` bigint(20) DEFAULT NULL COMMENT '渠道id', |
| | `operator_number` varchar(50) DEFAULT NULL COMMENT '办理工号', |
| | `deduction_status` tinyint(4) DEFAULT NULL COMMENT '是否抵扣 0不抵扣 1抵扣', |
| | `operator_number_id` bigint(20) DEFAULT NULL COMMENT '办理工号id(不同渠道工号可能相同)', |
| | `remark` varchar(128) DEFAULT '' COMMENT '备注信息', |
| | `service_effective_time` datetime DEFAULT NULL COMMENT '服务生效时间', |
| | `service_end_time` datetime DEFAULT NULL COMMENT '服务结束时间', |
| | `original_operator_number_id` bigint(20) DEFAULT NULL COMMENT '原始工号', |
| | `broadband_user` tinyint(1) DEFAULT NULL COMMENT '是否宽带用户', |
| | `package_name` varchar(500) NOT NULL DEFAULT '' COMMENT '套餐名称', |
| | `check_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '审核状态', |
| | `check_user_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '审核人id', |
| | `check_time` datetime DEFAULT NULL COMMENT '审核时间', |
| | `version` int(11) NOT NULL DEFAULT '1', |
| | PRIMARY KEY (`id`), |
| | UNIQUE KEY `index_orderDetailId` (`order_detail_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 37345 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '运营商业务' |
+---------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_operator_business' order by num_rows desc limit 1
+---------------------+------------+
| table_name | num_rows |
+=====================+============+
| t_operator_business | 37334 |
+---------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501084' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 1246019 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_after_services_buy
+----------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+======================+=====================================================================================================================================================================================================================================================================+
| t_after_services_buy | CREATE TABLE `t_after_services_buy` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', |
| | `order_detail_id` bigint(20) DEFAULT NULL COMMENT '商品order_detail_id', |
| | `imei` varchar(150) DEFAULT NULL COMMENT '串号', |
| | `type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '服务分类 1-维修服务, 2-贴膜年包, 3-九讯服务, 4-保护壳年包, 5-游戏卡年包', |
| | `includ_cid` text DEFAULT NULL COMMENT '出险分类', |
| | `service_date` int(11) DEFAULT NULL COMMENT '服务期限(月)', |
| | `server_count` int(11) DEFAULT NULL COMMENT '服务次数', |
| | `use_count` int(11) DEFAULT NULL COMMENT '已使用次数', |
| | `user_id` bigint(20) DEFAULT NULL COMMENT '客户编号', |
| | `area_id` bigint(20) DEFAULT NULL COMMENT '门店id', |
| | `product_ppid` bigint(20) NOT NULL COMMENT '商品(膜)的ppid', |
| | `start_date` date DEFAULT NULL COMMENT '开始时间(天,不用到时分秒)', |
| | `end_date` date DEFAULT NULL COMMENT '结束时间', |
| | `is_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '删除标志(0:未删除,1:已删除)', |
| | `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', |
| | `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', |
| | `bind_order_detail_id` bigint(20) NOT NULL COMMENT '服务(年包)detailId', |
| | `product_buy_price` decimal(10,2) DEFAULT NULL COMMENT '商品(膜)最终购买价格', |
| | `service_ppid` bigint(20) NOT NULL COMMENT '绑定服务ppid', |
| | `server_use_other` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否可换其它款 0不可以 1可以', |
| | `is_quality_renew` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否质保换新', |
| | `doc_config_id` bigint(20) DEFAULT NULL COMMENT '质保换新文案id', |
| | `need_link_product` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否关联商品销售,如果不关联,则表示可以单独售卖', |
| | `exchange_deduction_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '兑换抵扣金额,当【是否关联商品销售】为是,则不展示该字段,当【是否关联商品销售】为否,则展示该字段,且必填', |
| | `extra_bind_imei` varchar(150) NOT NULL DEFAULT '' COMMENT '储不在系统内的imei,存在该值时,一定是外部imei绑定', |
| | `rebuy_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否复购\r\n要求贴膜年包,保护壳年包,游戏卡年包可复购\r\n如果复购订单退款要返还复购次数', |
| | `no_limit_flag` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否通过维修单高级无限制出险增加', |
| | `deduction_type` int(11) NOT NULL DEFAULT '0' COMMENT '出险抵扣类型:1、配件费,2、维修费,3、配件费和维修费', |
| | PRIMARY KEY (`id`), |
| | KEY `IDX_PPID` (`product_ppid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `IDX_ORDER_DETAIL_ID` (`order_detail_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `IDX_USER_ID` (`user_id`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `IDX_IMEI` (`imei`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `IDX_SERVICE_PPID` (`service_ppid`) BLOCK_SIZE 16384 LOCAL, |
| | KEY `IDX_BIND_DETAIL_ID` (`bind_order_detail_id`) BLOCK_SIZE 16384 LOCAL |
| | ) AUTO_INCREMENT = 36984 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '增值(年包)服务购买表' |
+----------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_after_services_buy' order by num_rows desc limit 1
+----------------------+------------+
| table_name | num_rows |
+======================+============+
| t_after_services_buy | 36983 |
+----------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '500199' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 1002846 |
+--------------+----------+-------------------+
obclient > show create table small_oa_169.t_order_detail_extend
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+=======================+=================================================================================================================================================================================================================================================================================================+
| t_order_detail_extend | CREATE TABLE `t_order_detail_extend` ( |
| | `id` bigint(20) NOT NULL COMMENT '订单明细表的主键id', |
| | `in_source_id` bigint(20) DEFAULT NULL COMMENT '虚拟商品明细所属的供应商', |
| | `huijb_original_detail_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '值为汇机保最原始的销售单的明细id,默认为0,如果为0则说明该条数据无效', |
| | `huijb_call_back_flag` tinyint(4) NOT NULL DEFAULT '0' COMMENT '汇机保回调标识,未回调未0,已回调为1,默认值为0', |
| | `change_price` decimal(16,2) DEFAULT NULL COMMENT '改价金额', |
| | `change_price_user_id` bigint(20) DEFAULT NULL COMMENT '改价员工id', |
| | `change_price_user_name` varchar(64) DEFAULT NULL COMMENT '改价员工姓名', |
| | `change_price_time` datetime DEFAULT NULL COMMENT '改价时间', |
| | `rebuy_after_services_buy_id` bigint(20) DEFAULT NULL COMMENT '年包复购了哪一个年包记录id', |
| | `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', |
| | `update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', |
| | `is_delete` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否删除', |
| | `original_detail_type` int(11) NOT NULL DEFAULT '0' COMMENT '原始商品类型', |
| | PRIMARY KEY (`id`), |
| | KEY `idx_huijb_original_detail_id` (`huijb_original_detail_id`) BLOCK_SIZE 16384 LOCAL COMMENT '普通索引,方便查询' |
| | ) DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '订单明细表扩展,用于储存订单明细需要瞬时记录的数据,提交订单/追加商品时新增,订单完结时根据需要进行更新' |
+-----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_order_detail_extend' order by num_rows desc limit 1
+-----------------------+------------+
| table_name | num_rows |
+=======================+============+
| t_order_detail_extend | 760721 |
+-----------------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '501158' order by total_data_size desc limit 1
+--------------+--------+-------------------+
| SVR_IP | role | total_data_size |
+==============+========+===================+
| 10.1.250.157 | LEADER | 9937860 |
+--------------+--------+-------------------+
obclient > show create table small_oa_169.t_category
+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+============+=====================================================================================================================================================================================================================================================+
| t_category | CREATE TABLE `t_category` ( |
| | `id` bigint(20) NOT NULL AUTO_INCREMENT, |
| | `parent_id` bigint(20) DEFAULT NULL, |
| | `name` varchar(50) DEFAULT NULL COMMENT '分类名称', |
| | `level` int(11) DEFAULT NULL COMMENT '分类级别', |
| | `child` int(11) DEFAULT NULL, |
| | `rank` int(11) DEFAULT NULL COMMENT '排序', |
| | `path` varchar(100) DEFAULT NULL COMMENT '路径,id以逗号连接,前后加逗号', |
| | `pic` varchar(100) DEFAULT NULL, |
| | `keywords` varchar(100) DEFAULT NULL COMMENT '关键词', |
| | `description` text DEFAULT NULL COMMENT '描述', |
| | `display` tinyint(4) DEFAULT NULL, |
| | `prices` varchar(200) DEFAULT NULL COMMENT '价格区间:多个价格区间,逗号间隔', |
| | `is_mobile` tinyint(4) NOT NULL, |
| | `newsid` int(11) DEFAULT NULL, |
| | `newsid2` int(11) DEFAULT NULL, |
| | `ppids` varchar(200) DEFAULT NULL, |
| | `page_title` varchar(200) DEFAULT NULL COMMENT '分类首页标题', |
| | `is_service` tinyint(4) DEFAULT NULL, |
| | `is_show` tinyint(1) DEFAULT NULL COMMENT '主站是否展示', |
| | `adid` int(11) DEFAULT NULL, |
| | `is_statistics` tinyint(1) DEFAULT NULL, |
| | `service_ids` varchar(200) DEFAULT NULL, |
| | `product_sort_value` int(11) NOT NULL DEFAULT '0' COMMENT '商品排序值', |
| | `not_support_delivery` varchar(10) DEFAULT NULL, |
| | `sys_sort` tinyint(4) DEFAULT '0' COMMENT '系统排序', |
| | `is_output_category` tinyint(4) DEFAULT '0' COMMENT '输出分类 1是 0否', |
| | `is_virtual_goods` tinyint(4) DEFAULT '0' COMMENT '是否虚拟商品 1是 0否', |
| | PRIMARY KEY (`id`), |
| | KEY `ParentID_Index` (`parent_id`) BLOCK_SIZE 16384 LOCAL, |
| | FULLTEXT KEY `category_path` (`path`) WITH PARSER space BLOCK_SIZE 16384 |
| | ) AUTO_INCREMENT = 1000001 AUTO_INCREMENT_MODE = 'ORDER' DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.3.8' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 0 COMMENT = '分类' |
+------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ table_name , ifnull(num_rows,0) as num_rows from oceanbase.cdb_tables where con_id = '1006' and owner = 'small_oa_169' and table_name = 't_category' order by num_rows desc limit 1
+--------------+------------+
| table_name | num_rows |
+==============+============+
| t_category | 659 |
+--------------+------------+
obclient > select /*+read_consistency(weak) QUERY_TIMEOUT(60000000) */ t1.SVR_IP,t1.role,ifnull(t2.data_size,0) as total_data_size from (select SVR_IP,tenant_id, database_name, role, table_id, tablet_id from oceanbase.cdb_ob_table_locations) t1 left join (select tenant_id, tablet_id,data_size from oceanbase.cdb_ob_tablet_replicas) t2 on t1.tenant_id = t2.tenant_id and t1.tablet_id = t2.tablet_id where t1.tenant_id = '1006' and t1.table_id = '500505' order by total_data_size desc limit 1
+--------------+----------+-------------------+
| SVR_IP | role | total_data_size |
+==============+==========+===================+
| 10.1.250.157 | FOLLOWER | 31568 |
+--------------+----------+-------------------+
+----------------------------------+----------+
| Variable_name | Value |
+----------------------------------+----------+
| parallel_degree_limit | 0 |
| parallel_degree_policy | MANUAL |
| parallel_min_scan_time_threshold | 1000 |
| parallel_servers_target | 40 |
| slave_parallel_type | DATABASE |
| slave_parallel_workers | 0 |
+----------------------------------+----------+
+----------------------------------------------------+------------------------------------------------------------------------------------------------------------------+
| Variable_name | Value |
+----------------------------------------------------+------------------------------------------------------------------------------------------------------------------+
| activate_all_roles_on_login | OFF |
| autocommit | ON |
| automatic_sp_privileges | 1 |
| auto_generate_certs | ON |
| auto_increment_cache_size | 1000000 |
| auto_increment_increment | 1 |
| auto_increment_offset | 1 |
| avoid_temporal_upgrade | OFF |
| big_tables | OFF |
| binlog_cache_size | 32768 |
| binlog_checksum | CRC32 |
| binlog_direct_non_transactional_updates | 0 |
| binlog_error_action | ABORT_SERVER |
| binlog_format | ROW |
| binlog_group_commit_sync_delay | 0 |
| binlog_group_commit_sync_no_delay_count | 0 |
| binlog_max_flush_queue_time | 0 |
| binlog_order_commits | 1 |
| binlog_rows_query_log_events | OFF |
| binlog_row_image | FULL |
| binlog_stmt_cache_size | 32768 |
| binlog_transaction_dependency_history_size | 25000 |
| binlog_transaction_dependency_tracking | COMMIT_ORDER |
| block_encryption_mode | aes-128-ecb |
| cardinality_estimation_model | PARTIAL |
| character_sets_dir | |
| character_set_client | utf8mb4 |
| character_set_connection | utf8mb4 |
| character_set_database | utf8mb4 |
| character_set_filesystem | binary |
| character_set_results | utf8mb4 |
| character_set_server | utf8mb4 |
| character_set_system | utf8mb4 |
| check_proxy_users | OFF |
| collation_connection | utf8mb4_general_ci |
| collation_database | utf8mb4_general_ci |
| collation_server | utf8mb4_general_ci |
| completion_type | NO_CHAIN |
| concurrent_insert | AUTO |
| connection_control_failed_connections_threshold | 0 |
| connection_control_max_connection_delay | 2147483647 |
| connection_control_min_connection_delay | 1000 |
| connect_timeout | 10 |
| cte_max_recursion_depth | 1000 |
| cursor_sharing | FORCE |
| datadir | /data1/stag_oceanbase/observer7/store |
| datetime_format | %Y-%m-%d %H:%i:%s |
| date_format | %Y-%m-%d |
| debug | d:t:i:o,/tmp/mysqld.trace |
| default_authentication_plugin | mysql_native_password |
| default_collation_for_utf8mb4 | utf8mb4_general_ci |
| default_password_lifetime | 0 |
| default_storage_engine | OceanBase |
| default_tmp_storage_engine | InnoDB |
| default_week_format | 0 |
| delayed_insert_limit | 100 |
| delayed_insert_timeout | 300 |
| delayed_queue_size | 1000 |
| delay_key_write | ON |
| disabled_storage_engines | |
| disconnect_on_expired_password | ON |
| div_precision_increment | 4 |
| enable_sql_plan_monitor | OFF |
| enforce_gtid_consistency | OFF |
| eq_range_index_dive_limit | 200 |
| error_count | 0 |
| error_on_overlap_time | OFF |
| expire_logs_days | 0 |
| explicit_defaults_for_timestamp | ON |
| external_user | |
| flush | OFF |
| flush_time | 0 |
| foreign_key_checks | ON |
| ft_stopword_file | built-in |
| general_log | OFF |
| group_concat_max_len | 1024 |
| group_replication_allow_local_disjoint_gtids_join | OFF |
| group_replication_allow_local_lower_version_join | OFF |
| group_replication_auto_increment_increment | 7 |
| group_replication_bootstrap_group | OFF |
| group_replication_components_stop_timeout | 31536000 |
| group_replication_compression_threshold | 1000000 |
| group_replication_enforce_update_everywhere_checks | OFF |
| group_replication_exit_state_action | READ_ONLY |
| group_replication_flow_control_applier_threshold | 25000 |
| group_replication_flow_control_certifier_threshold | 25000 |
| group_replication_flow_control_mode | QUOTA |
| group_replication_force_members | |
| group_replication_group_name | |
| group_replication_group_seeds | |
| group_replication_gtid_assignment_block_size | |
| group_replication_ip_whitelist | AUTOMATIC |
| group_replication_local_address | |
| group_replication_member_weight | 50 |
| group_replication_poll_spin_loops | 0 |
| group_replication_recovery_complete_at | TRANSACTIONS_APPLIED |
| group_replication_recovery_reconnect_interval | 60 |
| group_replication_recovery_retry_count | 10 |
| group_replication_recovery_ssl_ca | |
| group_replication_recovery_ssl_capath | |
| group_replication_recovery_ssl_cert | |
| group_replication_recovery_ssl_cipher | |
| group_replication_recovery_ssl_crl | |
| group_replication_recovery_ssl_crlpath | |
| group_replication_recovery_ssl_key | |
| group_replication_recovery_ssl_verify_server_cert | OFF |
| group_replication_recovery_use_ssl | OFF |
| group_replication_single_primary_mode | OFF |
| group_replication_ssl_mode | DISABLED |
| group_replication_start_on_boot | OFF |
| group_replication_transaction_size_limit | 0 |
| group_replication_unreachable_majority_timeout | 0 |
| gtid_executed | |
| gtid_executed_compression_period | 1000 |
| gtid_mode | OFF |
| gtid_next | AUTOMATIC |
| gtid_owned | |
| gtid_purged | |
| have_crypt | YES |
| have_dynamic_loading | YES |
| have_openssl | YES |
| have_profiling | NO |
| have_query_cache | NO |
| have_ssl | YES |
| have_symlink | YES |
| hostname | |
| identity | 0 |
| ignore_builtin_innodb | NO |
| information_schema_stats_expiry | 86400 |
| init_connect | |
| innodb_adaptive_flushing | ON |
| innodb_adaptive_flushing_lwm | 10 |
| innodb_adaptive_hash_index | ON |
| innodb_adaptive_hash_index_parts | 8 |
| innodb_adaptive_max_sleep_delay | 150000 |
| innodb_api_bk_commit_interval | 5 |
| innodb_api_disable_rowlock | OFF |
| innodb_api_trx_level | 0 |
| innodb_autoextend_increment | 64 |
| innodb_autoinc_lock_mode | 1 |
| innodb_background_drop_list_empty | OFF |
| innodb_buffer_pool_chunk_size | 134217728 |
| innodb_buffer_pool_dump_at_shutdown | ON |
| innodb_buffer_pool_dump_now | OFF |
| innodb_buffer_pool_dump_pct | 25 |
| innodb_buffer_pool_filename | ib_buffer_pool |
| innodb_buffer_pool_instances | 8 |
| innodb_buffer_pool_load_abort | OFF |
| innodb_buffer_pool_load_at_startup | ON |
| innodb_buffer_pool_load_now | OFF |
| innodb_buffer_pool_size | 134217728 |
| innodb_change_buffering | all |
| innodb_change_buffering_debug | 0 |
| innodb_change_buffer_max_size | 25 |
| innodb_checksums | ON |
| innodb_checksum_algorithm | crc32 |
| innodb_cmp_per_index_enabled | OFF |
| innodb_commit_concurrency | 0 |
| innodb_compression_failure_threshold_pct | 5 |
| innodb_compression_level | 6 |
| innodb_compression_pad_pct_max | 50 |
| innodb_compress_debug | NONE |
| innodb_concurrency_tickets | 5000 |
| innodb_data_file_path | ibdata1:12M:autoextend |
| innodb_data_home_dir | |
| innodb_deadlock_detect | 1 |
| innodb_default_row_format | DYNAMIC |
| innodb_disable_resize_buffer_pool_debug | ON |
| innodb_disable_sort_file_cache | OFF |
| innodb_doublewrite | ON |
| innodb_file_format | Barracuda |
| innodb_file_format_check | ON |
| innodb_file_format_max | Barracuda |
| innodb_file_per_table | ON |
| innodb_fill_factor | 100 |
| innodb_fil_make_page_dirty_debug | 0 |
| innodb_flushing_avg_loops | 30 |
| innodb_flush_log_at_timeout | 1 |
| innodb_flush_log_at_trx_commit | 1 |
| innodb_flush_method | null |
| innodb_flush_neighbors | 1 |
| innodb_flush_sync | ON |
| innodb_force_load_corrupted | OFF |
| innodb_force_recovery | 0 |
| innodb_ft_cache_size | 8000000 |
| innodb_ft_enable_diag_print | OFF |
| innodb_ft_num_word_optimize | 2000 |
| innodb_ft_result_cache_limit | 2000000000 |
| innodb_ft_server_stopword_table | |
| innodb_ft_sort_pll_degree | 2 |
| innodb_ft_total_cache_size | 640000000 |
| innodb_large_prefix | ON |
| innodb_limit_optimistic_insert_debug | 0 |
| innodb_lock_wait_timeout | 50 |
| innodb_log_checkpoint_now | OFF |
| innodb_log_checksums | 1 |
| innodb_log_compressed_pages | 1 |
| innodb_log_write_ahead_size | 8192 |
| innodb_lru_scan_depth | 1024 |
| innodb_max_dirty_pages_pct | 75 |
| innodb_max_dirty_pages_pct_lwm | 0 |
| innodb_max_purge_lag | 0 |
| innodb_max_purge_lag_delay | 0 |
| innodb_max_undo_log_size | 1073741824 |
| innodb_merge_threshold_set_all_debug | 50 |
| innodb_online_alter_log_max_size | 134217728 |
| innodb_optimize_fulltext_only | OFF |
| innodb_page_size | 16384 |
| innodb_print_all_deadlocks | 0 |
| innodb_read_only | OFF |
| innodb_replication_delay | 0 |
| innodb_rollback_on_timeout | OFF |
| innodb_saved_page_number_debug | 0 |
| innodb_sort_buffer_size | 1048576 |
| innodb_stats_auto_recalc | ON |
| innodb_stats_include_delete_marked | OFF |
| innodb_stats_method | nulls_equal |
| innodb_stats_on_metadata | OFF |
| innodb_stats_persistent | ON |
| innodb_stats_persistent_sample_pages | 20 |
| innodb_stats_sample_pages | 8 |
| innodb_stats_transient_sample_pages | 8 |
| innodb_strict_mode | ON |
| innodb_support_xa | ON |
| innodb_sync_debug | OFF |
| innodb_table_locks | 1 |
| innodb_temp_data_file_path | ibtmp1:12M:autoextend |
| innodb_tmpdir | |
| innodb_trx_purge_view_update_only_debug | OFF |
| innodb_trx_rseg_n_slots_debug | 0 |
| innodb_undo_logs | 128 |
| innodb_undo_log_truncate | 0 |
| innodb_version | 5.7.38 |
| insert_id | 0 |
| interactive_timeout | 28800 |
| is_result_accurate | ON |
| join_buffer_size | 262144 |
| keyring_aws_cmk_id | |
| keyring_aws_conf_file | |
| keyring_aws_data_file | |
| keyring_aws_region | us-east-1 |
| keyring_encrypted_file_data | |
| keyring_encrypted_file_password | |
| keyring_file_data | |
| keyring_okv_conf_dir | |
| keyring_operations | ON |
| key_buffer_size | 8388608 |
| key_cache_age_threshold | 300 |
| key_cache_block_size | 1024 |
| key_cache_division_limit | 100 |
| language | |
| last_insert_id | 0 |
| lc_messages | en_US |
| lc_messages_dir | |
| lc_time_names | en_US |
| license | |
| local_infile | ON |
| lock_wait_timeout | 31536000 |
| log_bin | ON |
| log_bin_trust_function_creators | 0 |
| log_bin_use_v1_row_events | 0 |
| log_builtin_as_identified_by_password | 0 |
| log_row_value_options | |
| long_query_time | 10 |
| lower_case_file_system | OFF |
| lower_case_table_names | 2 |
| master_info_repository | FILE |
| master_verify_checksum | OFF |
| max_allowed_packet | 16777216 |
| max_binlog_cache_size | 18446744073709500416 |
| max_binlog_size | 1073741824 |
| max_binlog_stmt_cache_size | 18446744073709500416 |
| max_connections | 2147483647 |
| max_connect_errors | 100 |
| max_digest_length | 1024 |
| max_execution_time | 0 |
| max_join_size | 18446744073709547520 |
| max_length_for_sort_data | 1024 |
| max_prepared_stmt_count | 16382 |
| max_relay_log_size | 0 |
| max_seeks_for_key | 18446744073709551615 |
| max_sort_length | 1024 |
| max_sp_recursion_depth | 0 |
| max_tmp_tables | 32 |
| max_user_connections | 0 |
| max_write_lock_count | 18446744073709500416 |
| mecab_rc_file | |
| metadata_locks_cache_size | 1024 |
| metadata_locks_hash_instances | 8 |
| min_examined_row_limit | 0 |
| multi_range_count | 256 |
| myisam_mmap_size | 18446744073709551615 |
| mysqlx_connect_timeout | 30 |
| mysqlx_idle_worker_thread_timeout | 60 |
| mysqlx_max_allowed_packet | 67108864 |
| mysqlx_max_connections | 100 |
| mysqlx_min_worker_threads | 2 |
| mysql_firewall_mode | OFF |
| mysql_firewall_trace | OFF |
| mysql_native_password_proxy_users | OFF |
| ndbinfo_database | ndbinfo |
| ndbinfo_table_prefix | ndb$ |
| ndbinfo_version | |
| ndb_batch_size | 32768 |
| ndb_cluster_connection_pool | 1 |
| ndb_cluster_connection_pool_nodeids | |
| ndb_log_apply_status | OFF |
| ndb_log_bin | ON |
| ndb_log_fail_terminate | OFF |
| ndb_log_orig | OFF |
| ndb_log_transaction_id | OFF |
| ndb_optimized_node_selection | 3 |
| Ndb_system_name | |
| ndb_use_copying_alter_table | OFF |
| ndb_version | |
| ndb_version_string | |
| ndb_wait_connected | 30 |
| ndb_wait_setup | 30 |
| net_buffer_length | 16384 |
| net_read_timeout | 30 |
| net_retry_count | 10 |
| net_write_timeout | 60 |
| new | OFF |
| ob_bnl_join_cache_size | 10485760 |
| ob_check_sys_variable | ON |
| ob_compatibility_control | MYSQL5.7 |
| ob_compatibility_mode | MYSQL |
| ob_compatibility_version | 4.3.2.1 |
| ob_default_lob_inrow_threshold | 8192 |
| ob_early_lock_release | OFF |
| ob_enable_aggregation_pushdown | ON |
| ob_enable_index_direct_select | OFF |
| ob_enable_jit | OFF |
| ob_enable_parameter_anonymous_block | ON |
| ob_enable_plan_cache | ON |
| ob_enable_pl_cache | ON |
| ob_enable_rich_error_msg | OFF |
| ob_enable_show_trace | OFF |
| ob_enable_sql_audit | ON |
| ob_enable_transformation | ON |
| ob_enable_transmission_checksum | ON |
| ob_enable_truncate_flashback | OFF |
| ob_hnsw_ef_search | 64 |
| ob_interm_result_mem_limit | 2147483648 |
| ob_kv_mode | ALL |
| ob_last_schema_version | 0 |
| ob_log_level | disabled |
| ob_max_read_stale_time | -1 |
| ob_org_cluster_id | 0 |
| ob_plan_cache_evict_high_percentage | 90 |
| ob_plan_cache_evict_low_percentage | 50 |
| ob_plan_cache_percentage | 5 |
| ob_pl_block_timeout | 3216672000000000 |
| ob_query_timeout | 3216672000000000 |
| ob_read_consistency | STRONG |
| ob_reserved_meta_memory_percentage | 10 |
| ob_route_policy | READONLY_ZONE_FIRST |
| ob_security_version | 4.3.2.1 |
| ob_sql_audit_percentage | 3 |
| ob_sql_work_area_percentage | 5 |
| ob_table_access_policy | AUTO |
| ob_tcp_invited_nodes | % |
| ob_temp_tablespace_size_percentage | 0 |
| ob_trace_info | |
| ob_trx_idle_timeout | 86400000000 |
| ob_trx_lock_timeout | -1 |
| ob_trx_timeout | 3216672000000000 |
| old_alter_table | OFF |
| old_passwords | 0 |
| optimizer_capture_sql_plan_baselines | OFF |
| optimizer_dynamic_sampling | 1 |
| optimizer_features_enable | 4.3.2.0 |
| optimizer_prune_level | 1 |
| optimizer_search_depth | 62 |
| optimizer_switch | |
| optimizer_trace | |
| optimizer_trace_features | |
| optimizer_trace_limit | 1 |
| optimizer_trace_max_mem_size | 16384 |
| optimizer_trace_offset | -1 |
| optimizer_use_sql_plan_baselines | OFF |
| parallel_degree_limit | 0 |
| parallel_degree_policy | MANUAL |
| parallel_min_scan_time_threshold | 1000 |
| parallel_servers_target | 40 |
| parser_max_mem_size | 18446744073709551615 |
| partition_index_dive_limit | 10 |
| performance_schema | OFF |
| performance_schema_show_processlist | OFF |
| plsql_optimize_level | 2 |
| plugin_dir | ./plugin_dir/ |
| plugin_load | |
| plugin_load_add | |
| privilege_features_enable | 4.3.2.1 |
| profiling | OFF |
| profiling_history_size | 15 |
| protocol_version | 10 |
| proxy_user | |
| pseudo_slave_mode | OFF |
| pseudo_thread_id | 2147483647 |
| query_alloc_block_size | 8192 |
| query_cache_limit | 0 |
| query_cache_min_res_unit | 0 |
| query_cache_size | 0 |
| query_cache_type | OFF |
| query_cache_wlock_invalidate | OFF |
| query_prealloc_size | 8192 |
| query_rewrite_enabled | FALSE |
| query_rewrite_integrity | ENFORCED |
| rand_seed1 | 0 |
| rand_seed2 | 0 |
| range_alloc_block_size | 4096 |
| range_index_dive_limit | 10 |
| range_optimizer_max_mem_size | 8388608 |
| rbr_exec_mode | STRICT |
| read_only | OFF |
| recyclebin | OFF |
| regexp_stack_limit | 8000000 |
| regexp_time_limit | 32 |
| relay_log_info_repository | FILE |
| relay_log_purge | 1 |
| replication_optimize_for_static_plugin_config | OFF |
| replication_sender_observe_commit_only | OFF |
| resource_manager_plan | ocp_monitor_plan |
| rewriter_enabled | ON |
| rewriter_verbose | 0 |
| rpl_semi_sync_master_enabled | OFF |
| rpl_semi_sync_master_timeout | 10000 |
| rpl_semi_sync_master_trace_level | 32 |
| rpl_semi_sync_master_wait_for_slave_count | 1 |
| rpl_semi_sync_master_wait_no_slave | OFF |
| rpl_semi_sync_master_wait_point | AFTER_SYNC |
| rpl_semi_sync_slave_enabled | OFF |
| rpl_semi_sync_slave_trace_level | 32 |
| rpl_stop_slave_timeout | 31536000 |
| runtime_bloom_filter_max_size | 2147483648 |
| runtime_filter_max_in_num | 1024 |
| runtime_filter_type | BLOOM_FILTER,RANGE,IN |
| runtime_filter_wait_time_ms | 10 |
| secure_auth | ON |
| secure_file_priv | |
| server_id | 1 |
| server_uuid | d1c1d434-7a48-11ef-a9bf-f01fafdb1c2d |
| session_track_gtids | OFF |
| session_track_schema | ON |
| session_track_state_change | OFF |
| session_track_system_variables | time_zone, autocommit, character_set_client, character_set_results, character_set_connection |
| session_track_transaction_info | OFF |
| sha256_password_auto_generate_rsa_keys | ON |
| sha256_password_private_key_path | private_key.pem |
| sha256_password_proxy_users | OFF |
| sha256_password_public_key_path | public_key.pem |
| show_compatibility_56 | OFF |
| show_create_table_verbosity | OFF |
| show_old_temporals | OFF |
| skip_external_locking | ON |
| skip_show_database | 0 |
| skip_slave_start | OFF |
| slave_allow_batching | OFF |
| slave_checkpoint_group | 512 |
| slave_checkpoint_period | 300 |
| slave_compressed_protocol | OFF |
| slave_exec_mode | STRICT |
| slave_load_tmpdir | |
| slave_max_allowed_packet | 1073741824 |
| slave_net_timeout | 60 |
| slave_parallel_type | DATABASE |
| slave_parallel_workers | 0 |
| slave_pending_jobs_size_max | 16777216 |
| slave_preserve_commit_order | OFF |
| slave_rows_search_algorithms | TABLE_SCAN,INDEX_SCAN |
| slave_skip_errors | OFF |
| slave_sql_verify_checksum | OFF |
| slave_transaction_retries | 10 |
| slave_type_conversions | ALL_LOSSY |
| slow_query_log | 0 |
| slow_query_log_file | /usr/local/mysql/data/obrd-slow.log |
| sort_buffer_size | 262144 |
| sql_auto_is_null | OFF |
| sql_big_selects | ON |
| sql_buffer_result | 0 |
| sql_mode | STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_AUTO_CREATE_USER |
| sql_notes | OFF |
| sql_quote_show_create | ON |
| sql_safe_updates | OFF |
| sql_select_limit | 9223372036854775807 |
| sql_slave_skip_counter | 0 |
| sql_throttle_cpu | -1 |
| sql_throttle_current_priority | 100 |
| sql_throttle_io | -1 |
| sql_throttle_logical_reads | -1 |
| sql_throttle_network | -1 |
| sql_throttle_priority | -1 |
| sql_throttle_rt | -1 |
| sql_warnings | OFF |
| ssl_ca | |
| ssl_capath | |
| ssl_cert | |
| ssl_cipher | |
| ssl_crl | |
| ssl_crlpath | |
| ssl_key | |
| stored_program_cache | 256 |
| super_read_only | OFF |
| sync_binlog | 1 |
| sync_relay_log | 10000 |
| sync_relay_log_info | 10000 |
| system_time_zone | +08:00 |
| table_definition_cache | -1 |
| table_open_cache_instances | 16 |
| timestamp | 0 |
| time_format | %H:%i:%s |
| time_zone | +08:00 |
| tls_version | |
| tmpdir | |
| tmp_table_size | 16777216 |
| tracefile_identifier | |
| transaction_alloc_block_size | 8192 |
| transaction_allow_batching | OFF |
| transaction_isolation | READ-COMMITTED |
| transaction_prealloc_size | 4096 |
| transaction_read_only | OFF |
| transaction_write_set_extraction | OFF |
| tx_isolation | READ-COMMITTED |
| tx_read_only | OFF |
| unique_checks | ON |
| updatable_views_with_limit | ON |
| validate_password_check_user_name | on |
| validate_password_dictionary_file | |
| validate_password_length | 0 |
| validate_password_mixed_case_count | 0 |
| validate_password_number_count | 0 |
| validate_password_policy | low |
| validate_password_special_char_count | 0 |
| version | 5.7.25-OceanBase_CE-v4.3.4.0 |
| version_comment | OceanBase_CE 4.3.4.0 (r100000162024110717-82547d6edc6ea98ba710e376a736a9a850499a06) (Built Nov 7 2024 17:27:27) |
| version_compile_machine | |
| version_compile_os | |
| version_tokens_session | |
| wait_timeout | 28800 |
| warning_count | 0 |
| _aggregation_optimization_settings | 0 |
| _enable_mysql_pl_priv_check | ON |
| _enable_storage_cardinality_estimation | ON |
| _optimizer_gather_stats_on_load | ON |
| _optimizer_null_aware_antijoin | ON |
| _priv_control | |
| _show_ddl_in_compat_mode | OFF |
| _windowfunc_optimization_settings | 0 |
+----------------------------------------------------+------------------------------------------------------------------------------------------------------------------+
+-------+----------+--------------+----------+-------------------------------------------------+-----------+----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------+---------+---------+-------------------+---------------+-----------+
| zone | svr_type | svr_ip | svr_port | name | data_type | value | info | section | scope | source | edit_level | default_value | isdefault |
+-------+----------+--------------+----------+-------------------------------------------------+-----------+----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------+---------+---------+-------------------+---------------+-----------+
| zone3 | observer | 10.1.250.157 | 2882 | ob_storage_s3_url_encode_type | STRING | default | Determines the URL encoding method for S3 requests."default": Uses the S3 standard URL encoding method."compliantRfc3986Encoding": Uses URL encoding that adheres to the RFC 3986 standard. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | default | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | _enable_dbms_job_package | BOOL | False | Control whether can use DBMS_JOB package. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_ob_error_msg_style | BOOL | True | A switch that determines whether to use the ORA-xx or OBE-xx error code format for ORA error codes, with a default value of True to use the OBE-xx format.The default value is True. Value: False means we use the ORA-xx format, True means we use the OBE-xx format. | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | strict_check_os_params | BOOL | False | A switch that determines whether to enable strict OS parameter check mode, defaulting to true and can be set to false to bypass strict checks.Value: True: allowed; False: allowed but not suggested | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_rpc_authentication_bypass | BOOL | True | specifies whether allow OMS service to connect cluster and provide service when rpc authentication is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sql_protocol_min_tls_version | STRING | none | SQL SSL control options, used to specify the minimum SSL/TLS version number. values: none, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rpc_server_authentication_method | STRING | ALL | specifies rpc server authentication method. ALL: support all authentication methods. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rpc_client_authentication_method | STRING | NONE | specifies rpc client authentication method. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | observer_id | INT | 3 | the unique id that been assigned by rootservice for each observer in cluster, default: 0 (invalid id), Range: [1, 18446744073709551615] | OBSERVER | CLUSTER | DEFAULT | READONLY | 0 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | local_ip | STRING | 10.1.250.157 | the IP address of the machine on which the ObServer will be installed | OBSERVER | CLUSTER | DEFAULT | READONLY | | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_dblink | BOOL | True | Enable or disable dblink | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | global_background_cpu_quota | DOUBLE | -1 | When enable_global_background_resource_isolation is True, specify the number of vCPUs allocated to the background tasks-1 for the CPU is not limited by the cgroup | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | -1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_global_background_resource_isolation | BOOL | False | When set to false, foreground and background tasks are isolated within the tenant; When set to true, isolate background tasks individually upon tenant-level | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_cgroup | BOOL | True | when set to false, cgroup will not init; when set to true but cgroup root dir is not ready, print ERROR | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sql_net_thread_count | INT | 0 | the number of global mysql I/O threads. Range: [0, 64] in integer, default value is 0, 0 stands for old value GCONF.net_thread_count | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sql_login_thread_count | INT | 0 | the number of threads for sql login request. Range: [0, 32] in integer, 0 stands for use default thread count defined in TG.the default thread count for login request in TG is normal:6 mini-mode:2 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tcp_keepcnt | INT | 10 | The maximum number of keepalive probes TCP should send before dropping the connection. Take effect for new established connections. Range: [1,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tcp_keepintvl | TIME | 6s | The time (in seconds) between individual keepalive probes. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tcp_keepidle | TIME | 7200s | The time (in seconds) the connection needs to remain idle before TCP starts sending keepalive probe. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7200s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_tcp_keepalive | BOOL | True | enable TCP keepalive for the TCP connection of sql protocol. Take effect for new established connections. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_ratelimit_stat_period | TIME | 1s | the time interval to update observer's maximum bandwidth to a certain region. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_ob_ratelimit | BOOL | False | enable ratelimit between regions for RPC connection. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ssl_external_kms_info | STRING | | when using the external key management center for ssl, this parameter will store some key management information | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | use_large_pages | STRING | false | used to manage the database's use of large pages, values: false, true, only | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | false | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | schema_history_recycle_interval | TIME | 10m | the time interval between the schedules of schema history recyle task. Range: [0s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | _bloom_filter_ratio | INT | 3 | the px bloom filter false-positive rate.the default value is 1, range: [0,100] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 35 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | use_ipv6 | BOOL | False | Whether this server uses ipv6 address | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ssl_client_authentication | BOOL | False | enable server SSL support. Takes effect after ca/cert/key file is configured correctly. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | stack_size | CAPACITY | 512K | the size of routine execution stackRange: [512K, 20M] | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 512K | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | px_task_size | CAPACITY | 2M | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | dtl_buffer_size | CAPACITY | 64K | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 64K | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | micro_block_merge_verify_level | INT | 2 | specify what kind of verification should be done when merging micro block. 0 : no verification will be done 1 : verify encoding algorithm, encoded micro block will be read to ensure data is correct 2 : verify encoding and compression algorithm, besides encoding verification, compressed block will be decompressed to ensure data is correct3 : verify encoding, compression algorithm and lost write protect | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | builtin_db_data_verify_cycle | INT | 20 | check cycle of db data. Range: [0, 360] in integer. Unit: day. 0: check nothing. 1-360: check all data every specified days. The default value is 20. The real check cycle maybe longer than the specified value for insuring performance. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tablet_size | CAPACITY | 128M | default tablet size, has to be a multiple of 2M | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sys_bkgd_migration_change_member_list_timeout | TIME | 20s | the timeout for migration change member list retry. The default value is 20s. Range: [0s,24h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sys_bkgd_migration_retry_num | INT | 3 | retry num limit during migration. Range: [3, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sync_io_thread_count | INT | 0 | The number of io threads for synchronizing request on each device. The default value is 0. Range: [0,1024] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | disk_io_thread_count | INT | 8 | The number of io threads on each disk. The default value is 8. Range: [2,32] in even integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sys_bkgd_net_percentage | INT | 60 | the net percentage of sys background net. Range: [0, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | data_disk_usage_limit_percentage | INT | 90 | the safe use percentage of data diskRange: [50,100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 90 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | data_storage_error_tolerance_time | TIME | 300s | time to tolerate disk read failure, after that, the disk status will be set error. Range [10s,7200s]. The default value is 300s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 300s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | data_storage_warning_tolerance_time | TIME | 5s | time to tolerate disk read failure, after that, the disk status will be set warning. Range [1s,300s]. The default value is 5s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | storage_meta_cache_priority | INT | 10 | storage meta cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | fuse_row_cache_priority | INT | 1 | fuse row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | bf_cache_miss_count_threshold | INT | 100 | bf cache miss count threshold, 0 means disable bf cache. Range:[0, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | bf_cache_priority | INT | 1 | bf cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | user_row_cache_priority | INT | 1 | user row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | user_block_cache_priority | INT | 1 | user block cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | index_block_cache_priority | INT | 10 | index cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | opt_tab_stat_cache_priority | INT | 1 | tab stat cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tablet_ls_cache_priority | INT | 1000 | tablet ls cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | location_cache_refresh_sql_timeout | TIME | 1s | The timeout used for refreshing location cache by SQL. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | location_cache_refresh_rpc_timeout | TIME | 500ms | The timeout used for refreshing location cache by RPC. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | all_server_list | STRING | 10.1.250.157:2882,10.1.250.160:2882,10.1.250.161:2882 | all server addr in cluster | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | location_cache_refresh_min_interval | TIME | 100ms | the time interval in which no request for location cache renewal will be executed. The default value is 100 milliseconds. [0s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | location_fetch_concurrency | INT | 20 | the maximum number of the tasks for fetching location cache concurrently. Range: [1, 1000] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | location_refresh_thread_count | INT | 2 | the number of threads for fetching location cache in the background. Range: (1, 64] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | virtual_table_location_cache_expire_time | TIME | 8s | expiration time for virtual table location info in partition location cache. Range: [1s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | standby_fetch_log_bandwidth_limit | CAPACITY | 0MB | the max bandwidth in bytes per second that can be occupied by the sum of the synchronizing log from primary cluster of all servers in the standby cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0MB | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rpc_timeout | TIME | 2s | the time during which a RPC request is permitted to execute before it is terminated | RPC | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ignore_replay_checksum_error | BOOL | False | specifies whether error raised from the memtable replay checksum validation can be ignored. Value: True:ignored; False: not ignored | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | row_compaction_update_limit | INT | 6 | maximum update count before trigger row compaction. Range: [1, 6400] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | clog_sync_time_warn_threshold | TIME | 100ms | the time given to the commit log synchronization between a leader and its followers before a \'warning\' message is printed in the log file. Range: [1ms,1000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | trx_2pc_retry_interval | TIME | 100ms | the time interval between the retries in case of failure during a transaction\'s two-phase commit phase. Range: [1ms,5000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_sys_unit_standalone | BOOL | False | specifies whether sys unit standalone deployment is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_balance_cpu_mem_tolerance_percent | INT | 5 | specifies the tolerance (in percentage) of the unbalance of the cpu/memory utilization among all servers. The average cpu/memory utilization is calculated by dividing the total cpu/memory by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_balance_disk_tolerance_percent | INT | 1 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all servers. The average disk space utilization is calculated by dividing the total space by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_balance_critical_disk_waterlevel | INT | 80 | disk water level to determine server balance strategy | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | __min_full_resource_pool_memory | INT | 2147483648 | the min memory value which is specified for a full resource pool. | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5368709120 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | balancer_log_interval | TIME | 1m | the time interval between logging the load-balancing task\'s statistics. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1m | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | balancer_task_timeout | TIME | 20m | the time to execute the load-balancing task before it is terminated. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20m | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | balancer_tolerance_percentage | INT | 10 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all units. The average disk space utilization is calculated by dividing the total space by the number of units. For example, say balancer_tolerance_percentage is set to 10 and a tenant has two units in the system, the average disk use for each unit should be about the same, thus 50% of the total value. Therefore, the system will start a rebalancing task when any unit\'s disk space goes beyond +-10% of the average usage. Range: [1, 100) in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_rereplication | BOOL | True | specifies whether the auto-replication is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | resource_hard_limit | INT | 100 | system utilization should not be large than resource_hard_limit | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | arbitration_degradation_policy | STRING | LS_POLICY | specifies the degradation policy, whether to check network connectivity with RS before arbitration degrades. Value: LS_POLICY, CLUSTER_POLICY LS_POLICY: default policy. CLUSTER_POLICY: check network connectivity with RS before arbitration degrades. Do not degrade when not connected. Then, switch log stream leaders to the replicas which are connected with RS. | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | LS_POLICY | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_storage_warning_tolerance_time | TIME | 5s | time to tolerate log disk io delay, after that, the disk status will be set warning. Range: [1s,300s] | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_percentage | INT | 0 | the percentage of disk space used by the log files. Range: [0,99] in integer;only effective when parameter log_disk_size is 0;when log_disk_percentage is 0: a) if the data and the log are on the same disk, means log_disk_percentage = 30 b) if the data and the log are on the different disks, means log_disk_perecentage = 90 | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_size | CAPACITY | 192G | the size of disk space used by the log files. Range: [0, +∞) | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | recyclebin_object_expire_time | TIME | 0s | recyclebin object expire time, default 0 that means auto purge recyclebin off. Range: [0s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_event_history_recycle_interval | TIME | 7d | the time to recycle event history. Range: [1d, 180d] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_crazy_medium_compaction | BOOL | False | enables triggering medium compaction repeatly. The default value is False. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_major_freeze | BOOL | True | specifies whether major_freeze function is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_ddl | BOOL | True | specifies whether DDL operation is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | min_observer_version | STRING | 4.3.4.0 | the min observer version | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tablet_meta_table_check_interval | TIME | 30m | the time interval that observer compares tablet meta table with local ls replica info and make adjustments to ensure the correctness of tablet meta table. Range: [1m,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30m | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ls_meta_table_check_interval | TIME | 1s | the time interval that observer compares ls meta table with local ls replica info and make adjustments to ensure the correctness of ls meta table. Range: [1ms,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tablet_meta_table_scan_batch_count | INT | 999 | the number of tablet replica info that will be read by each request on the tablet-related system tables during procedures such as load-balancing, daily merge, election and etc. Range:(0,65536] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 999 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rootservice_ready_check_interval | TIME | 3s | the interval between the schedule of the rootservice restart task while restart failed Range: [100000us, 1m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_check_interval | TIME | 30s | the time interval between schedules of a task that examines the __all_server table. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | migration_disable_time | TIME | 3600s | the duration in which the observer stays in the \'block_migrate_in\' status, which means it is not allowed to migrate into the server. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_permanent_offline_time | TIME | 3600s | the time interval between any two heartbeats beyond which a server is considered to be \'permanently\' offline. Range: [20s,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_sys_table_ddl | BOOL | False | specifies whether a \'system\' table is allowed be to created manually. Value: True: allowed; False: not allowed | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rootservice_async_task_queue_size | INT | 16384 | the size of the queue for all asynchronous tasks at rootserver. Range: [8, 131072] in integer | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rootservice_async_task_thread_count | INT | 4 | maximum of threads allowed for executing asynchronous task at rootserver. Range: [1, 10] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | lease_time | TIME | 10s | Lease for current heartbeat. If the root server does not received any heartbeat from an observer in lease_time seconds, that observer is considered to be offline. Not recommended for modification. Range: [1s, 5m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | plan_cache_evict_interval | TIME | 5s | time interval for periodic plan cache eviction. Range: [0s, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | data_disk_write_limit_percentage | INT | 0 | used to stop user write operations. When the user data disk reaches this watermark, SQL requests will report that the disk is full. The configuration should be greater than data_disk_usage_limit_percentage, with the recommended setting being: (1 - memstore_limit_size / data_disk_size) * 100% | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | memstore_limit_percentage | INT | 0 | used in calculating the value of MEMSTORE_LIMIT parameter: memstore_limit_percentage = memstore_limit / memory_size, where MEMORY_SIZE is determined when the tenant is created. Range: [0, 100). 1. the system will use memstore_limit_percentage if only memstore_limit_percentage is set.2. the system will use _memstore_limit_percentage if both memstore_limit_percentage and _memstore_limit_percentage is set.3. the system will adjust automatically if both memstore_limit_percentage and _memstore_limit_percentage set to 0(by default). | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | large_query_threshold | TIME | 600s | threshold for execution time beyond which a request may be paused and rescheduled as a \'large request\', 0ms means disable \'large request\'. Range: [0ms, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | large_query_worker_percentage | DOUBLE | 30 | the percentage of the workers reserved to serve large query request. Range: [0, 100] in percentage | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated workers vs the maximum number of threads that can be scheduled concurrently. Range: [2, 20] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | location_cache_cpu_quota | DOUBLE | 5 | the number of vCPUs allocated for the requests regarding location info of the core tables. Range: [0,10] in integer | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_cpu_quota_max | DOUBLE | 0 | the number of maximal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | server_cpu_quota_min | DOUBLE | 0 | the number of minimal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_sql_operator_dump | BOOL | True | specifies whether sql operators (sort/hash join/material/window function/interm result/...) allowed to write to disk | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | autoinc_cache_refresh_interval | TIME | 3600s | auto-increment service cache refresh sync_value in this interval, with default 3600s. Range: [100ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | memory_chunk_cache_size | CAPACITY | 0M | the maximum size of memory cached by memory chunk cache. Range: [0M,], 0 stands for adaptive | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | cache_wash_threshold | CAPACITY | 4GB | size of remaining memory at which cache eviction will be triggered. Range: [0,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4GB | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | memory_limit_percentage | INT | 80 | the size of the memory reserved for internal use(for testing purpose). Range: [10, 95] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | syslog_file_uncompressed_count | INT | 0 | specifies the minimum number of the syslog files that will not be compressed. Each syslog file can occupy at most 256MB disk space. When this value is set to 0, all syslog file may be compressed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | syslog_compress_func | STRING | none | compress function name for syslog files, values: none, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | syslog_disk_size | CAPACITY | 0M | the size of disk space used by the syslog files. Range: [0, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_syslog_recycle | BOOL | True | specifies whether log file recycling is turned on. Value: True:turned on; False: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_syslog_wf | BOOL | False | specifies whether any log message with a log level higher than \'WARN\' would be printed into a separate file with a suffix of \'wf\' | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_async_syslog | BOOL | True | specifies whether use async log for observer.log, elec.log and rs.log | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | max_syslog_file_count | INT | 4 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | diag_syslog_per_error_limit | INT | 200 | DIAG syslog limitation for each error per second, exceeding syslog would be truncated | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 200 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | syslog_io_bandwidth_limit | CAPACITY | 30MB | Syslog IO bandwidth limitation, exceeding syslog would be truncated. Use 0 to disable ERROR log. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30MB | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | alert_log_level | STRING | INFO | specifies the current level of alert log. There are INFO, WARN, ERROR, three different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | INFO | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | syslog_level | STRING | ERROR | specifies the current level of logging. There are DEBUG, TRACE, WDIAG, EDIAG, INFO, WARN, ERROR, seven different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | WDIAG | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | obconfig_url | STRING | http://10.1.28.181:8080/services?Action=ObRootServiceInfo&User_ID=alibaba&UID=ocpmaster&ObRegion=stagoceanbase | URL for OBConfig service | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | cluster_id | INT | 1727163816 | ID of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | cluster | STRING | stagoceanbase | Name of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | obcluster | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | rootservice_list | STR_LIST | 10.1.250.157:2882:2881;10.1.250.160:2882:2881;10.1.250.161:2882:2881 | a list of servers against which election candidate is checked for validation | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | weak_read_version_refresh_interval | TIME | 100ms | the time interval to refresh cluster weak read version Range: [50ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_compress | STRING | archive | default compress strategy for create new table within oracle mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | archive | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_row_format | STRING | dynamic | default row format in mysql mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | dynamic | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_compress_func | STRING | zstd_1.3.8 | default compress function name for create new table, values: none, lz4_1.0, snappy_1.0, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | zstd_1.3.8 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | schema_history_expire_time | TIME | 7d | the hour of expire time for schema history, from 1hour to 30days, with default 7days. Range: [1h, 30d] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_upgrade_mode | BOOL | False | specifies whether upgrade mode is turned on. If turned on, daily merger and balancer will be disabled. Value: True: turned on; False: turned off; | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_perf_event | BOOL | True | specifies whether to enable perf event feature. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | dead_socket_detection_timeout | TIME | 3s | specify a tcp_user_timeout for RFC5482. A zero value makes the option disabled, Range: [0, 2h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | debug_sync_timeout | TIME | 0 | Enable the debug sync facility and optionally specify a default wait timeout in micro seconds. A zero value keeps the facility disabled, Range: [0, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_rich_error_msg | BOOL | False | specifies whether add ip:port, time and trace id to user error message. The default value is FALSE. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_record_trace_id | BOOL | False | specifies whether record app trace id is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_sql_audit | BOOL | True | specifies whether SQL audit is turned on. The default value is TRUE. Value: TRUE: turned on FALSE: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | max_string_print_length | INT | 500 | truncate very long string when printing to log file. Range:[0,] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_record_trace_log | BOOL | False | specifies whether to always record the trace log. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | trace_log_slow_query_watermark | TIME | 1s | the threshold of execution time (in milliseconds) of a query beyond which it is considered to be a \'slow query\'. Range: [1ms,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | cpu_count | INT | 0 | the number of CPU\'s in the system. If this parameter is set to zero, the number will be set according to sysconf; otherwise, this parameter is used. Range: [0,+∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | system_memory | CAPACITY | 6G | the memory reserved for internal use which cannot be allocated to any outer-tenant, and should be determined to guarantee every server functions normally. Range: [0M,) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | memory_limit | CAPACITY | 64G | the size of the memory reserved for internal use(for testing purpose), 0 means follow memory_limit_percentage. Range: 0, [1G,). | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | tenant_task_queue_size | INT | 16384 | the size of the task queue for each tenant. Range: [1024,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | high_priority_net_thread_count | INT | 0 | the number of rpc I/O threads for high priority messages, 0 means set off. Range: [0, 64] in integer | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | net_thread_count | INT | 0 | the number of rpc/mysql I/O threads for Libeasy. Range: [0, 64] in integer, 0 stands for max(6, CPU_NUM/8) | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | internal_sql_execute_timeout | TIME | 30s | the number of microseconds an internal DML request is permitted to execute before it is terminated. Range: [1000us, 1h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_startup_mode | STRING | NORMAL | specifies the observer startup mode | OBSERVER | CLUSTER | DEFAULT | READONLY | NORMAL | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | zone | STRING | zone3 | specifies the zone name | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | devname | STRING | eno3 | name of network adapter | OBSERVER | CLUSTER | DEFAULT | READONLY | bond0 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | mysql_port | INT | 2881 | port number for mysql connection. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2881 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rpc_port | INT | 2882 | the port number for RPC protocol. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2882 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | leak_mod_to_check | STRING | NONE | the name of the module under memory leak checks | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | config_additional_dir | STR_LIST | etc2;etc3 | additional directories of configure file | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | etc2;etc3 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | memory_reserved | CAPACITY | 500M | the size of the system memory reserved for emergency internal use. Range: [10M, total size of memory] | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | datafile_disk_percentage | INT | 0 | the percentage of disk space used by the data files. Range: [0,99] in integer | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | datafile_maxsize | CAPACITY | 0 | the auto extend max size. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | datafile_next | CAPACITY | 0 | the auto extend step. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | datafile_size | CAPACITY | 192G | size of the data file. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | redundancy_level | STRING | NORMAL | EXTERNAL: use extrernal redundancyNORMAL: tolerate one disk failureHIGH: tolerate two disk failure if disk count is enough | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NORMAL | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | data_dir | STRING | /data1/stag_oceanbase/observer7/store | the directory for the data file | SSTABLE | CLUSTER | DEFAULT | READONLY | store | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_encoding_granularity | INT | 65536 | Maximum rows for encoding in one micro block. Range:[8192,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 65536 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_vector_memory_limit_percentage | INT | 0 | Used to control the upper limit percentage of memory resources that the vector_index module can use. Range:[0, 100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_group_commit_rw_mode | STRING | ALL | Used to specify the read/write operation types when group commit is enable. Values: 'ALL' means enable all operations, 'READ' mean only enable read operation in group commit, 'WRITE' means only write operations in group commit. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_group_commit_batch_size | INT | 1 | Used to specify the batch size of each group commit batch in OBKV. Values: 1 means sinlge operaion in each batch, equally to disable group commit. When batch size is greater than 1, it means group commit is enable and used as its batch size. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | direct_load_allow_fallback | BOOL | False | Control whether an error is reported when direct load of the derivative operation scenario is not supported. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_load_mode | STRING | DISABLED | Specifies default load data path."DISABLED" represent load data not in direct load path (default value)."FULL_DIRECT_WRITE" represent load data in full direct load path with insert semantics."INC_DIRECT_WRITE" represent load data in inc direct load path with insert semantics."INC_REPLACE_DIRECT_WRITE" represent load data in inc direct load path with replace semantics. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | DISABLED | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sql_plan_management_mode | STRING | Disable | Specifies how spm work."Disable" represent disable spm (default value)."OnlineEvolve" represent evolve plan online. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | Disable | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | lob_enable_block_cache_threshold | CAPACITY | 256K | For outrow-stored LOBs, if the length is less than or equal to that threshold, they can be admitted into the block cache to speed up the next query. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256K | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | choose_migration_source_policy | STRING | region | the policy of choose source in migration and add replica. 'idc' means firstly choose follower replica of the same idc as source, 'region' means firstly choose follower replica of the same region as source | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | region | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | json_document_max_depth | INT | 100 | maximum nesting depth allowed in a JSON document | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | max_partition_num | INT | 8192 | set max partition num in mysql mode | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | optimizer_index_cost_adj | INT | 0 | adjust costing of index scan | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_hbase_client_scanner_timeout_period | INT | 60000 | OBKV Hbase client scanner query timeout, which unit is milliseconds. Range: (0, +∞) in integer. Especially, 60000 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | shared_log_retention | TIME | 1d | Retention time of log files on shared storage | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1d | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ttl_thread_score | INT | 0 | the current work thread score of ttl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_kv_ttl | BOOL | False | specifies whether ttl task is enbled | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_ttl_history_recycle_interval | TIME | 7d | the time to recycle ttl history. Range: [1d, 180d] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_ttl_duty_duration | STRING | | ttl background task working time durationbegin_time or end_time in Range, e.g., [23:00:00, 24:00:00] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | auto_split_tablet_size | CAPACITY | 128M | when create an auto-partitioned table in "create table" syntax or modify a table as an auto-partitioned table in "alter table" syntax,if the splitting threshold of tablet size is not setted,this config will be setted as the threshold of the table.Note that the modification of this config will not affect the created auto-partitioned table.Range: [128M, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_auto_split | BOOL | False | if the auto-partition clause is not usedthis config judge whether to enable auto-partition for creating table. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | range_optimizer_max_mem_size | CAPACITY | 128M | to limit the memory consumption for the query range optimizer. Range: [0M,+∞), 0 stands for unlimited | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_user_defined_rewrite_rules | BOOL | False | specify whether the user defined rewrite rules are enabled. Value: True: enable False: disable | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | dump_data_dictionary_to_log_interval | TIME | 24h | data dictionary dump to log(SYS LS) intervalRange: (0s,+∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 24h | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tenant_sql_net_thread_count | INT | 0 | the number of mysql I/O threads for a tenant. Range: [0, 64] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tenant_sql_login_thread_count | INT | 0 | the number of threads for sql login request of each tenant. Range: [0, 32] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | arbitration_timeout | TIME | 5s | The timeout before automatically degrading when arbitration member exists. Range: [3s,+∞] | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | query_response_time_range_base | INT | 10 | Select base of log for QUERY_RESPONSE_TIME ranges. WARNING: variable change takes affect only after flush.The default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | query_response_time_flush | BOOL | False | Flush QUERY_RESPONSE_TIME table and re-read query_response_time_range_baseThe default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | query_response_time_stats | BOOL | False | Enable or disable QUERY_RESPONSE_TIME statistics collectingThe default value is False. Value: TRUE: turned on FALSE: turned off | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_enable_extended_rowid | BOOL | False | specifies whether to create table as extended rowid mode or not | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_query_switch_leader_retry_timeout | TIME | 0ms | max time spend on retry caused by leader swith or network disconnectionRange: [0ms, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0ms | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_auto_increment_mode | STRING | order | specifies default auto-increment mode, default is 'order' | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | order | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_sql_extension | BOOL | False | specifies whether to allow use some oracle mode features in mysql mode | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | job_queue_processes | INT | 1000 | specifies the maximum number of job slaves per instance that can be created for the execution of DBMS_JOB jobs and Oracle Scheduler (DBMS_SCHEDULER) jobs. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_proxy_readonly_transaction_routing_policy | BOOL | False | Proxy route policy for readonly sql: whether regard begining read only stmts as in transaction | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | connection_control_max_connection_delay | INT | 2147483647 | The maximum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2147483647 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | connection_control_min_connection_delay | INT | 1000 | The minimum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | connection_control_failed_connections_threshold | INT | 0 | The number of consecutive failed connection attempts permitted to accountsbefore the server adds a delay for subsequent connection attempts | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | open_cursors | INT | 50 | specifies the maximum number of open cursors a session can have at once.can use this parameter to prevent a session from opening an excessive number of cursors.Range: [0, 65535] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_ssl_invited_common_names | STRING | NONE | when server use ssl, use it to control client identity with ssl subject common name. default NONE | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | plsql_v2_compatibility | BOOL | False | allows to control store routine compile action at DDL stage | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | plsql_debug | BOOL | False | specifies whether or not PL/SQL library units will be compiled for debugging | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | plsql_code_type | STRING | native | specifies the compilation mode for PL/SQL library units | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | native | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | tde_method | STRING | none | none : transparent encryption is none, none means cannot use tde, internal : transparent encryption is in the form of internal tables, bkmi : transparent encryption is in the form of external bkmi | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | external_kms_info | STRING | | when using the external key management center, this parameter will store some key management information | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_enable_batched_multi_statement | BOOL | False | enable use of batched multi statement | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | backup_data_file_size | CAPACITY | 4G | backup data file size. Range: [512M, 4G] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4G | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_strategy | STRING | ASYNCHRONOUS | the logging method used by the audit log plugin. ASYNCHRONOUS: Log asynchronously. Wait for space in the output buffer. PERFORMANCE: Log asynchronously. Drop requests when there is insufficient buffer. SYNCHRONOUS: Log synchronously. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ASYNCHRONOUS | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_rotate_on_size | CAPACITY | 256M | [0,)whenever a write to the audit log file causes its size to exceed the config value, it will be renamed and a new audit log file using is opened, range: [0,) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_query_sql | STRING | ALL | how to record the query sql. ALL: record the original query sql. DESENSITIVE: record the desensitive query sql. NONE: not to record query sql. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_prune_seconds | INT | 0 | the number of seconds after which audit log files become subject to pruning, range: [0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_max_size | CAPACITY | 0M | the maximum combined size of the audit log files | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_format | STRING | CSV | the audit log file format, values: CSV | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | CSV | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_path | STRING | | the directory of the audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_compression | STRING | NONE | the type of compression for the audit log file, values: NONE, ZSTD | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_buffer_size | CAPACITY | 16M | [16M,)the buffer size of async audit logRange: [16M, total size of memory] | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 16M | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_log_enable | BOOL | False | whether enable audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_trail | STRING | None | enables or disables database auditing, support NONE;OS;DB;DB,EXTENDED;DB_EXTENDED | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | None | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | audit_sys_operations | BOOL | False | whether trace sys user operations | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | sql_work_area | CAPACITY | 1G | Work area memory limitation for tenant | OBSERVER | TENANT | DEFAULT | STATIC_EFFECTIVE | 1G | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ob_compaction_schedule_interval | TIME | 120s | the time interval to schedule compaction, Range: [3s,5m]Range: [3s, 5m] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | major_compact_trigger | INT | 0 | specifies how many minor freeze should be triggered between two major freeze, Range: [0,65535] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | minor_compact_trigger | INT | 2 | minor_compact_trigger, Range: [0,16] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ddl_thread_score | INT | 0 | the current work thread score of ddl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ha_low_thread_score | INT | 0 | the current work thread score of high availability low thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ha_mid_thread_score | INT | 0 | the current work thread score of high availability mid thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ha_high_thread_score | INT | 0 | the current work thread score of high availability high thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compaction_high_thread_score | INT | 0 | the current work thread score of high priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compaction_mid_thread_score | INT | 0 | the current work thread score of middle priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compaction_low_thread_score | INT | 0 | the current work thread score of low priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compaction_schedule_tablet_batch_cnt | INT | 50000 | the batch size when scheduling tablet to execute compaction task. Range: [10000,200000] in integer. default value is 50000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compaction_dag_cnt_limit | INT | 15000 | the compaction dag count limit. Range: [10000,200000] in integer. default value is 15000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15000 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | rpc_memory_limit_percentage | INT | 0 | maximum memory for rpc in a tenant, as a percentage of total tenant memory, and 0 means no limit to rpc memory | RPC | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_early_lock_release | BOOL | True | enable early lock release | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | merger_check_interval | TIME | 10m | the time interval between the schedules of the task that checks on the progress of MERGE for each zone. Range: [10s, 60m] | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | major_freeze_duty_time | MOMENT | 02:00 | the start time of system daily merge procedure. Range: [00:00, 24:00) | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 02:00 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | partition_balance_schedule_interval | TIME | 2h | the time interval between generate partition balance task. The value should be no less than balancer_idle_time to enable partition balance. Default value 2h and the value 0s means disable partition balance. Range: [0s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | balancer_idle_time | TIME | 10s | the time interval between the schedules of the tenant load-balancing task. Range: [10s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_transfer | BOOL | True | controls whether transfers are allowed in the tenant. This config does not take effect when enable_rebalance is disabled. Value: True:turned on False:turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_rebalance | BOOL | True | specifies whether the tenant load-balancing is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | standby_db_preferred_upstream_log_region | STRING | | The preferred upstream log region for Standby db. The Standby db will give priority to the preferred upstream log region to fetch log. For high availability,the Standby db will also switch to the other region when the preferred upstream log region can not fetch log because of exception etc. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | archive_lag_target | TIME | 120s | The lag target of the log archive. The log archive target affects not only the backup availability, but also the lag of the standby database based on archive. Values larger than 7200s are not reasonable lag. The typical value is 120s. Extremely low values can result in high IOPS, which is not optimal for object storage; such values can also affect the performance of the database. The value 0ms means to archive as soon as possible. Range: [0ms,7200s] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | standby_db_fetch_log_rpc_timeout | TIME | 15s | The threshold for detecting the RPC timeout for the standby tenant to fetch log from the log restore source tenant. When the rpc timeout, the log transport service switches to another server of the log restore source tenant to fetch logs. Range: [2s, +∞) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | ls_gc_delay_time | TIME | 0s | The max delay time for ls gc when log archive is off. The default value is 0s. Range: [0s, +∞). The ls delay deletion mechanism will no longer take effect when the tenant is dropped. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_throttling_maximum_duration | TIME | 2h | maximum duration of log disk throttling, that is the time remaining until the log disk space is exhausted after log disk throttling triggered. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_throttling_percentage | INT | 60 | the threshold of the size of the log disk when writing_limit will be triggered. Rang:[40,100]. setting 100 means turn off writing limit | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_utilization_threshold | INT | 80 | log disk utilization threshold before reuse log files, should be smaller than log_disk_utilization_limit_threshold. Range: [10, 100) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_disk_utilization_limit_threshold | INT | 95 | maximum of log disk usage percentage before stop submitting or receiving logs, should be bigger than log_disk_utilization_threshold. Range: [80, 100] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 95 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_archive_concurrency | INT | 0 | log archive concurrency, for both archive fetcher and sender. If the value is default 0, the database will automatically calculate the number of archive worker threads based on the tenant specification, which is tenant max_cpu divided by 4; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_restore_concurrency | INT | 0 | log restore concurrency, for both the restore tenant and standby tenant. If the value is default 0, the database will automatically calculate the number of restore worker threads based on the tenant specification, which is tenant max_cpu; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_storage_compress_func | STRING | lz4_1.0 | specifies the algorithms used for log storage compression. Values: lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_storage_compress_all | BOOL | False | specifies whether to compress logs before storing. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_transport_compress_func | STRING | lz4_1.0 | compressor used for log transport. Values: none, lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | log_transport_compress_all | BOOL | False | If this option is set to true, use compression for log transport. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | compatible | VERSION | 4.3.4.0 | compatible version for persisted data | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | workarea_size_policy | STRING | AUTO | policy used to size SQL working areas (MANUAL/AUTO) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | AUTO | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_progressive_merge_num | INT | 0 | default progressive_merge_num when tenant create tableRange:[0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | writing_throttling_maximum_duration | TIME | 2h | maximum duration of writting throttling(in minutes), max value is 3 days | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_storage_s3_url_encode_type | STRING | default | Determines the URL encoding method for S3 requests."default": Uses the S3 standard URL encoding method."compliantRfc3986Encoding": Uses URL encoding that adheres to the RFC 3986 standard. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | default | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | _enable_dbms_job_package | BOOL | False | Control whether can use DBMS_JOB package. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_ob_error_msg_style | BOOL | True | A switch that determines whether to use the ORA-xx or OBE-xx error code format for ORA error codes, with a default value of True to use the OBE-xx format.The default value is True. Value: False means we use the ORA-xx format, True means we use the OBE-xx format. | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | strict_check_os_params | BOOL | False | A switch that determines whether to enable strict OS parameter check mode, defaulting to true and can be set to false to bypass strict checks.Value: True: allowed; False: allowed but not suggested | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_rpc_authentication_bypass | BOOL | True | specifies whether allow OMS service to connect cluster and provide service when rpc authentication is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sql_protocol_min_tls_version | STRING | none | SQL SSL control options, used to specify the minimum SSL/TLS version number. values: none, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rpc_server_authentication_method | STRING | ALL | specifies rpc server authentication method. ALL: support all authentication methods. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rpc_client_authentication_method | STRING | NONE | specifies rpc client authentication method. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | observer_id | INT | 1 | the unique id that been assigned by rootservice for each observer in cluster, default: 0 (invalid id), Range: [1, 18446744073709551615] | OBSERVER | CLUSTER | DEFAULT | READONLY | 0 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | local_ip | STRING | 10.1.250.161 | the IP address of the machine on which the ObServer will be installed | OBSERVER | CLUSTER | DEFAULT | READONLY | | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_dblink | BOOL | True | Enable or disable dblink | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | global_background_cpu_quota | DOUBLE | -1 | When enable_global_background_resource_isolation is True, specify the number of vCPUs allocated to the background tasks-1 for the CPU is not limited by the cgroup | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | -1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_global_background_resource_isolation | BOOL | False | When set to false, foreground and background tasks are isolated within the tenant; When set to true, isolate background tasks individually upon tenant-level | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_cgroup | BOOL | True | when set to false, cgroup will not init; when set to true but cgroup root dir is not ready, print ERROR | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sql_net_thread_count | INT | 0 | the number of global mysql I/O threads. Range: [0, 64] in integer, default value is 0, 0 stands for old value GCONF.net_thread_count | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sql_login_thread_count | INT | 0 | the number of threads for sql login request. Range: [0, 32] in integer, 0 stands for use default thread count defined in TG.the default thread count for login request in TG is normal:6 mini-mode:2 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tcp_keepcnt | INT | 10 | The maximum number of keepalive probes TCP should send before dropping the connection. Take effect for new established connections. Range: [1,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tcp_keepintvl | TIME | 6s | The time (in seconds) between individual keepalive probes. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tcp_keepidle | TIME | 7200s | The time (in seconds) the connection needs to remain idle before TCP starts sending keepalive probe. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7200s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_tcp_keepalive | BOOL | True | enable TCP keepalive for the TCP connection of sql protocol. Take effect for new established connections. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_ratelimit_stat_period | TIME | 1s | the time interval to update observer's maximum bandwidth to a certain region. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_ob_ratelimit | BOOL | False | enable ratelimit between regions for RPC connection. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ssl_external_kms_info | STRING | | when using the external key management center for ssl, this parameter will store some key management information | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | use_large_pages | STRING | false | used to manage the database's use of large pages, values: false, true, only | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | false | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | schema_history_recycle_interval | TIME | 10m | the time interval between the schedules of schema history recyle task. Range: [0s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | _bloom_filter_ratio | INT | 3 | the px bloom filter false-positive rate.the default value is 1, range: [0,100] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 35 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | use_ipv6 | BOOL | False | Whether this server uses ipv6 address | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ssl_client_authentication | BOOL | False | enable server SSL support. Takes effect after ca/cert/key file is configured correctly. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | stack_size | CAPACITY | 512K | the size of routine execution stackRange: [512K, 20M] | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 512K | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | px_task_size | CAPACITY | 2M | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | dtl_buffer_size | CAPACITY | 64K | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 64K | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | micro_block_merge_verify_level | INT | 2 | specify what kind of verification should be done when merging micro block. 0 : no verification will be done 1 : verify encoding algorithm, encoded micro block will be read to ensure data is correct 2 : verify encoding and compression algorithm, besides encoding verification, compressed block will be decompressed to ensure data is correct3 : verify encoding, compression algorithm and lost write protect | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | builtin_db_data_verify_cycle | INT | 20 | check cycle of db data. Range: [0, 360] in integer. Unit: day. 0: check nothing. 1-360: check all data every specified days. The default value is 20. The real check cycle maybe longer than the specified value for insuring performance. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tablet_size | CAPACITY | 128M | default tablet size, has to be a multiple of 2M | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sys_bkgd_migration_change_member_list_timeout | TIME | 20s | the timeout for migration change member list retry. The default value is 20s. Range: [0s,24h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sys_bkgd_migration_retry_num | INT | 3 | retry num limit during migration. Range: [3, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sync_io_thread_count | INT | 0 | The number of io threads for synchronizing request on each device. The default value is 0. Range: [0,1024] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | disk_io_thread_count | INT | 8 | The number of io threads on each disk. The default value is 8. Range: [2,32] in even integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sys_bkgd_net_percentage | INT | 60 | the net percentage of sys background net. Range: [0, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | data_disk_usage_limit_percentage | INT | 90 | the safe use percentage of data diskRange: [50,100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 90 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | data_storage_error_tolerance_time | TIME | 300s | time to tolerate disk read failure, after that, the disk status will be set error. Range [10s,7200s]. The default value is 300s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 300s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | data_storage_warning_tolerance_time | TIME | 5s | time to tolerate disk read failure, after that, the disk status will be set warning. Range [1s,300s]. The default value is 5s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | storage_meta_cache_priority | INT | 10 | storage meta cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | fuse_row_cache_priority | INT | 1 | fuse row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | bf_cache_miss_count_threshold | INT | 100 | bf cache miss count threshold, 0 means disable bf cache. Range:[0, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | bf_cache_priority | INT | 1 | bf cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | user_row_cache_priority | INT | 1 | user row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | user_block_cache_priority | INT | 1 | user block cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | index_block_cache_priority | INT | 10 | index cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | opt_tab_stat_cache_priority | INT | 1 | tab stat cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tablet_ls_cache_priority | INT | 1000 | tablet ls cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | location_cache_refresh_sql_timeout | TIME | 1s | The timeout used for refreshing location cache by SQL. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | location_cache_refresh_rpc_timeout | TIME | 500ms | The timeout used for refreshing location cache by RPC. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | all_server_list | STRING | 10.1.250.157:2882,10.1.250.160:2882,10.1.250.161:2882 | all server addr in cluster | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | location_cache_refresh_min_interval | TIME | 100ms | the time interval in which no request for location cache renewal will be executed. The default value is 100 milliseconds. [0s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | location_fetch_concurrency | INT | 20 | the maximum number of the tasks for fetching location cache concurrently. Range: [1, 1000] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | location_refresh_thread_count | INT | 2 | the number of threads for fetching location cache in the background. Range: (1, 64] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | virtual_table_location_cache_expire_time | TIME | 8s | expiration time for virtual table location info in partition location cache. Range: [1s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | standby_fetch_log_bandwidth_limit | CAPACITY | 0MB | the max bandwidth in bytes per second that can be occupied by the sum of the synchronizing log from primary cluster of all servers in the standby cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0MB | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rpc_timeout | TIME | 2s | the time during which a RPC request is permitted to execute before it is terminated | RPC | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ignore_replay_checksum_error | BOOL | False | specifies whether error raised from the memtable replay checksum validation can be ignored. Value: True:ignored; False: not ignored | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | row_compaction_update_limit | INT | 6 | maximum update count before trigger row compaction. Range: [1, 6400] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | clog_sync_time_warn_threshold | TIME | 100ms | the time given to the commit log synchronization between a leader and its followers before a \'warning\' message is printed in the log file. Range: [1ms,1000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | trx_2pc_retry_interval | TIME | 100ms | the time interval between the retries in case of failure during a transaction\'s two-phase commit phase. Range: [1ms,5000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_sys_unit_standalone | BOOL | False | specifies whether sys unit standalone deployment is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_balance_cpu_mem_tolerance_percent | INT | 5 | specifies the tolerance (in percentage) of the unbalance of the cpu/memory utilization among all servers. The average cpu/memory utilization is calculated by dividing the total cpu/memory by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_balance_disk_tolerance_percent | INT | 1 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all servers. The average disk space utilization is calculated by dividing the total space by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_balance_critical_disk_waterlevel | INT | 80 | disk water level to determine server balance strategy | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | __min_full_resource_pool_memory | INT | 2147483648 | the min memory value which is specified for a full resource pool. | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5368709120 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | balancer_log_interval | TIME | 1m | the time interval between logging the load-balancing task\'s statistics. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1m | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | balancer_task_timeout | TIME | 20m | the time to execute the load-balancing task before it is terminated. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20m | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | balancer_tolerance_percentage | INT | 10 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all units. The average disk space utilization is calculated by dividing the total space by the number of units. For example, say balancer_tolerance_percentage is set to 10 and a tenant has two units in the system, the average disk use for each unit should be about the same, thus 50% of the total value. Therefore, the system will start a rebalancing task when any unit\'s disk space goes beyond +-10% of the average usage. Range: [1, 100) in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_rereplication | BOOL | True | specifies whether the auto-replication is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | resource_hard_limit | INT | 100 | system utilization should not be large than resource_hard_limit | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | arbitration_degradation_policy | STRING | LS_POLICY | specifies the degradation policy, whether to check network connectivity with RS before arbitration degrades. Value: LS_POLICY, CLUSTER_POLICY LS_POLICY: default policy. CLUSTER_POLICY: check network connectivity with RS before arbitration degrades. Do not degrade when not connected. Then, switch log stream leaders to the replicas which are connected with RS. | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | LS_POLICY | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_storage_warning_tolerance_time | TIME | 5s | time to tolerate log disk io delay, after that, the disk status will be set warning. Range: [1s,300s] | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_percentage | INT | 0 | the percentage of disk space used by the log files. Range: [0,99] in integer;only effective when parameter log_disk_size is 0;when log_disk_percentage is 0: a) if the data and the log are on the same disk, means log_disk_percentage = 30 b) if the data and the log are on the different disks, means log_disk_perecentage = 90 | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_size | CAPACITY | 192G | the size of disk space used by the log files. Range: [0, +∞) | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | recyclebin_object_expire_time | TIME | 0s | recyclebin object expire time, default 0 that means auto purge recyclebin off. Range: [0s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_event_history_recycle_interval | TIME | 7d | the time to recycle event history. Range: [1d, 180d] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_crazy_medium_compaction | BOOL | False | enables triggering medium compaction repeatly. The default value is False. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_major_freeze | BOOL | True | specifies whether major_freeze function is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_ddl | BOOL | True | specifies whether DDL operation is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | min_observer_version | STRING | 4.3.4.0 | the min observer version | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tablet_meta_table_check_interval | TIME | 30m | the time interval that observer compares tablet meta table with local ls replica info and make adjustments to ensure the correctness of tablet meta table. Range: [1m,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30m | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ls_meta_table_check_interval | TIME | 1s | the time interval that observer compares ls meta table with local ls replica info and make adjustments to ensure the correctness of ls meta table. Range: [1ms,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tablet_meta_table_scan_batch_count | INT | 999 | the number of tablet replica info that will be read by each request on the tablet-related system tables during procedures such as load-balancing, daily merge, election and etc. Range:(0,65536] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 999 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rootservice_ready_check_interval | TIME | 3s | the interval between the schedule of the rootservice restart task while restart failed Range: [100000us, 1m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_check_interval | TIME | 30s | the time interval between schedules of a task that examines the __all_server table. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | migration_disable_time | TIME | 3600s | the duration in which the observer stays in the \'block_migrate_in\' status, which means it is not allowed to migrate into the server. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_permanent_offline_time | TIME | 3600s | the time interval between any two heartbeats beyond which a server is considered to be \'permanently\' offline. Range: [20s,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_sys_table_ddl | BOOL | False | specifies whether a \'system\' table is allowed be to created manually. Value: True: allowed; False: not allowed | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rootservice_async_task_queue_size | INT | 16384 | the size of the queue for all asynchronous tasks at rootserver. Range: [8, 131072] in integer | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rootservice_async_task_thread_count | INT | 4 | maximum of threads allowed for executing asynchronous task at rootserver. Range: [1, 10] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | lease_time | TIME | 10s | Lease for current heartbeat. If the root server does not received any heartbeat from an observer in lease_time seconds, that observer is considered to be offline. Not recommended for modification. Range: [1s, 5m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | plan_cache_evict_interval | TIME | 5s | time interval for periodic plan cache eviction. Range: [0s, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | data_disk_write_limit_percentage | INT | 0 | used to stop user write operations. When the user data disk reaches this watermark, SQL requests will report that the disk is full. The configuration should be greater than data_disk_usage_limit_percentage, with the recommended setting being: (1 - memstore_limit_size / data_disk_size) * 100% | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | memstore_limit_percentage | INT | 0 | used in calculating the value of MEMSTORE_LIMIT parameter: memstore_limit_percentage = memstore_limit / memory_size, where MEMORY_SIZE is determined when the tenant is created. Range: [0, 100). 1. the system will use memstore_limit_percentage if only memstore_limit_percentage is set.2. the system will use _memstore_limit_percentage if both memstore_limit_percentage and _memstore_limit_percentage is set.3. the system will adjust automatically if both memstore_limit_percentage and _memstore_limit_percentage set to 0(by default). | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | large_query_threshold | TIME | 600s | threshold for execution time beyond which a request may be paused and rescheduled as a \'large request\', 0ms means disable \'large request\'. Range: [0ms, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | large_query_worker_percentage | DOUBLE | 30 | the percentage of the workers reserved to serve large query request. Range: [0, 100] in percentage | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated workers vs the maximum number of threads that can be scheduled concurrently. Range: [2, 20] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | location_cache_cpu_quota | DOUBLE | 5 | the number of vCPUs allocated for the requests regarding location info of the core tables. Range: [0,10] in integer | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_cpu_quota_max | DOUBLE | 0 | the number of maximal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | server_cpu_quota_min | DOUBLE | 0 | the number of minimal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_sql_operator_dump | BOOL | True | specifies whether sql operators (sort/hash join/material/window function/interm result/...) allowed to write to disk | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | autoinc_cache_refresh_interval | TIME | 3600s | auto-increment service cache refresh sync_value in this interval, with default 3600s. Range: [100ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | memory_chunk_cache_size | CAPACITY | 0M | the maximum size of memory cached by memory chunk cache. Range: [0M,], 0 stands for adaptive | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | cache_wash_threshold | CAPACITY | 4GB | size of remaining memory at which cache eviction will be triggered. Range: [0,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4GB | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | memory_limit_percentage | INT | 80 | the size of the memory reserved for internal use(for testing purpose). Range: [10, 95] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | syslog_file_uncompressed_count | INT | 0 | specifies the minimum number of the syslog files that will not be compressed. Each syslog file can occupy at most 256MB disk space. When this value is set to 0, all syslog file may be compressed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | syslog_compress_func | STRING | none | compress function name for syslog files, values: none, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | syslog_disk_size | CAPACITY | 0M | the size of disk space used by the syslog files. Range: [0, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_syslog_recycle | BOOL | True | specifies whether log file recycling is turned on. Value: True:turned on; False: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_syslog_wf | BOOL | False | specifies whether any log message with a log level higher than \'WARN\' would be printed into a separate file with a suffix of \'wf\' | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_async_syslog | BOOL | True | specifies whether use async log for observer.log, elec.log and rs.log | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | max_syslog_file_count | INT | 4 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | diag_syslog_per_error_limit | INT | 200 | DIAG syslog limitation for each error per second, exceeding syslog would be truncated | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 200 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | syslog_io_bandwidth_limit | CAPACITY | 30MB | Syslog IO bandwidth limitation, exceeding syslog would be truncated. Use 0 to disable ERROR log. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30MB | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | alert_log_level | STRING | INFO | specifies the current level of alert log. There are INFO, WARN, ERROR, three different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | INFO | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | syslog_level | STRING | ERROR | specifies the current level of logging. There are DEBUG, TRACE, WDIAG, EDIAG, INFO, WARN, ERROR, seven different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | WDIAG | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | obconfig_url | STRING | http://10.1.28.181:8080/services?Action=ObRootServiceInfo&User_ID=alibaba&UID=ocpmaster&ObRegion=stagoceanbase | URL for OBConfig service | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | cluster_id | INT | 1727163816 | ID of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | cluster | STRING | stagoceanbase | Name of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | obcluster | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | rootservice_list | STR_LIST | 10.1.250.157:2882:2881;10.1.250.160:2882:2881;10.1.250.161:2882:2881 | a list of servers against which election candidate is checked for validation | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | weak_read_version_refresh_interval | TIME | 100ms | the time interval to refresh cluster weak read version Range: [50ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_compress | STRING | archive | default compress strategy for create new table within oracle mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | archive | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_row_format | STRING | dynamic | default row format in mysql mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | dynamic | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_compress_func | STRING | zstd_1.3.8 | default compress function name for create new table, values: none, lz4_1.0, snappy_1.0, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | zstd_1.3.8 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | schema_history_expire_time | TIME | 7d | the hour of expire time for schema history, from 1hour to 30days, with default 7days. Range: [1h, 30d] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_upgrade_mode | BOOL | False | specifies whether upgrade mode is turned on. If turned on, daily merger and balancer will be disabled. Value: True: turned on; False: turned off; | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_perf_event | BOOL | True | specifies whether to enable perf event feature. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | dead_socket_detection_timeout | TIME | 3s | specify a tcp_user_timeout for RFC5482. A zero value makes the option disabled, Range: [0, 2h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | debug_sync_timeout | TIME | 0 | Enable the debug sync facility and optionally specify a default wait timeout in micro seconds. A zero value keeps the facility disabled, Range: [0, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_rich_error_msg | BOOL | False | specifies whether add ip:port, time and trace id to user error message. The default value is FALSE. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_record_trace_id | BOOL | False | specifies whether record app trace id is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_sql_audit | BOOL | True | specifies whether SQL audit is turned on. The default value is TRUE. Value: TRUE: turned on FALSE: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | max_string_print_length | INT | 500 | truncate very long string when printing to log file. Range:[0,] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_record_trace_log | BOOL | False | specifies whether to always record the trace log. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | trace_log_slow_query_watermark | TIME | 1s | the threshold of execution time (in milliseconds) of a query beyond which it is considered to be a \'slow query\'. Range: [1ms,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | cpu_count | INT | 0 | the number of CPU\'s in the system. If this parameter is set to zero, the number will be set according to sysconf; otherwise, this parameter is used. Range: [0,+∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | system_memory | CAPACITY | 6G | the memory reserved for internal use which cannot be allocated to any outer-tenant, and should be determined to guarantee every server functions normally. Range: [0M,) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | memory_limit | CAPACITY | 64G | the size of the memory reserved for internal use(for testing purpose), 0 means follow memory_limit_percentage. Range: 0, [1G,). | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | tenant_task_queue_size | INT | 16384 | the size of the task queue for each tenant. Range: [1024,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | high_priority_net_thread_count | INT | 0 | the number of rpc I/O threads for high priority messages, 0 means set off. Range: [0, 64] in integer | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | net_thread_count | INT | 0 | the number of rpc/mysql I/O threads for Libeasy. Range: [0, 64] in integer, 0 stands for max(6, CPU_NUM/8) | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | internal_sql_execute_timeout | TIME | 30s | the number of microseconds an internal DML request is permitted to execute before it is terminated. Range: [1000us, 1h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_startup_mode | STRING | NORMAL | specifies the observer startup mode | OBSERVER | CLUSTER | DEFAULT | READONLY | NORMAL | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | zone | STRING | zone1 | specifies the zone name | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | devname | STRING | eno1 | name of network adapter | OBSERVER | CLUSTER | DEFAULT | READONLY | bond0 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | mysql_port | INT | 2881 | port number for mysql connection. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2881 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rpc_port | INT | 2882 | the port number for RPC protocol. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2882 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | leak_mod_to_check | STRING | NONE | the name of the module under memory leak checks | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | config_additional_dir | STR_LIST | etc2;etc3 | additional directories of configure file | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | etc2;etc3 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | memory_reserved | CAPACITY | 500M | the size of the system memory reserved for emergency internal use. Range: [10M, total size of memory] | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | datafile_disk_percentage | INT | 0 | the percentage of disk space used by the data files. Range: [0,99] in integer | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | datafile_maxsize | CAPACITY | 0 | the auto extend max size. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | datafile_next | CAPACITY | 0 | the auto extend step. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | datafile_size | CAPACITY | 192G | size of the data file. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | redundancy_level | STRING | NORMAL | EXTERNAL: use extrernal redundancyNORMAL: tolerate one disk failureHIGH: tolerate two disk failure if disk count is enough | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NORMAL | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | data_dir | STRING | /data1/stag_oceanbase/observer7/store | the directory for the data file | SSTABLE | CLUSTER | DEFAULT | READONLY | store | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_encoding_granularity | INT | 65536 | Maximum rows for encoding in one micro block. Range:[8192,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 65536 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_vector_memory_limit_percentage | INT | 0 | Used to control the upper limit percentage of memory resources that the vector_index module can use. Range:[0, 100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_group_commit_rw_mode | STRING | ALL | Used to specify the read/write operation types when group commit is enable. Values: 'ALL' means enable all operations, 'READ' mean only enable read operation in group commit, 'WRITE' means only write operations in group commit. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_group_commit_batch_size | INT | 1 | Used to specify the batch size of each group commit batch in OBKV. Values: 1 means sinlge operaion in each batch, equally to disable group commit. When batch size is greater than 1, it means group commit is enable and used as its batch size. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | direct_load_allow_fallback | BOOL | False | Control whether an error is reported when direct load of the derivative operation scenario is not supported. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_load_mode | STRING | DISABLED | Specifies default load data path."DISABLED" represent load data not in direct load path (default value)."FULL_DIRECT_WRITE" represent load data in full direct load path with insert semantics."INC_DIRECT_WRITE" represent load data in inc direct load path with insert semantics."INC_REPLACE_DIRECT_WRITE" represent load data in inc direct load path with replace semantics. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | DISABLED | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sql_plan_management_mode | STRING | Disable | Specifies how spm work."Disable" represent disable spm (default value)."OnlineEvolve" represent evolve plan online. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | Disable | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | lob_enable_block_cache_threshold | CAPACITY | 256K | For outrow-stored LOBs, if the length is less than or equal to that threshold, they can be admitted into the block cache to speed up the next query. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256K | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | choose_migration_source_policy | STRING | region | the policy of choose source in migration and add replica. 'idc' means firstly choose follower replica of the same idc as source, 'region' means firstly choose follower replica of the same region as source | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | region | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | json_document_max_depth | INT | 100 | maximum nesting depth allowed in a JSON document | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | max_partition_num | INT | 8192 | set max partition num in mysql mode | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | optimizer_index_cost_adj | INT | 0 | adjust costing of index scan | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_hbase_client_scanner_timeout_period | INT | 60000 | OBKV Hbase client scanner query timeout, which unit is milliseconds. Range: (0, +∞) in integer. Especially, 60000 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | shared_log_retention | TIME | 1d | Retention time of log files on shared storage | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1d | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ttl_thread_score | INT | 0 | the current work thread score of ttl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_kv_ttl | BOOL | False | specifies whether ttl task is enbled | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_ttl_history_recycle_interval | TIME | 7d | the time to recycle ttl history. Range: [1d, 180d] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_ttl_duty_duration | STRING | | ttl background task working time durationbegin_time or end_time in Range, e.g., [23:00:00, 24:00:00] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | auto_split_tablet_size | CAPACITY | 128M | when create an auto-partitioned table in "create table" syntax or modify a table as an auto-partitioned table in "alter table" syntax,if the splitting threshold of tablet size is not setted,this config will be setted as the threshold of the table.Note that the modification of this config will not affect the created auto-partitioned table.Range: [128M, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_auto_split | BOOL | False | if the auto-partition clause is not usedthis config judge whether to enable auto-partition for creating table. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | range_optimizer_max_mem_size | CAPACITY | 128M | to limit the memory consumption for the query range optimizer. Range: [0M,+∞), 0 stands for unlimited | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_user_defined_rewrite_rules | BOOL | False | specify whether the user defined rewrite rules are enabled. Value: True: enable False: disable | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | dump_data_dictionary_to_log_interval | TIME | 24h | data dictionary dump to log(SYS LS) intervalRange: (0s,+∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 24h | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tenant_sql_net_thread_count | INT | 0 | the number of mysql I/O threads for a tenant. Range: [0, 64] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tenant_sql_login_thread_count | INT | 0 | the number of threads for sql login request of each tenant. Range: [0, 32] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | arbitration_timeout | TIME | 5s | The timeout before automatically degrading when arbitration member exists. Range: [3s,+∞] | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | query_response_time_range_base | INT | 10 | Select base of log for QUERY_RESPONSE_TIME ranges. WARNING: variable change takes affect only after flush.The default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | query_response_time_flush | BOOL | False | Flush QUERY_RESPONSE_TIME table and re-read query_response_time_range_baseThe default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | query_response_time_stats | BOOL | False | Enable or disable QUERY_RESPONSE_TIME statistics collectingThe default value is False. Value: TRUE: turned on FALSE: turned off | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_enable_extended_rowid | BOOL | False | specifies whether to create table as extended rowid mode or not | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_query_switch_leader_retry_timeout | TIME | 0ms | max time spend on retry caused by leader swith or network disconnectionRange: [0ms, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0ms | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_auto_increment_mode | STRING | order | specifies default auto-increment mode, default is 'order' | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | order | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_sql_extension | BOOL | False | specifies whether to allow use some oracle mode features in mysql mode | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | job_queue_processes | INT | 1000 | specifies the maximum number of job slaves per instance that can be created for the execution of DBMS_JOB jobs and Oracle Scheduler (DBMS_SCHEDULER) jobs. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_proxy_readonly_transaction_routing_policy | BOOL | False | Proxy route policy for readonly sql: whether regard begining read only stmts as in transaction | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | connection_control_max_connection_delay | INT | 2147483647 | The maximum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2147483647 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | connection_control_min_connection_delay | INT | 1000 | The minimum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | connection_control_failed_connections_threshold | INT | 0 | The number of consecutive failed connection attempts permitted to accountsbefore the server adds a delay for subsequent connection attempts | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | open_cursors | INT | 50 | specifies the maximum number of open cursors a session can have at once.can use this parameter to prevent a session from opening an excessive number of cursors.Range: [0, 65535] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_ssl_invited_common_names | STRING | NONE | when server use ssl, use it to control client identity with ssl subject common name. default NONE | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | plsql_v2_compatibility | BOOL | False | allows to control store routine compile action at DDL stage | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | plsql_debug | BOOL | False | specifies whether or not PL/SQL library units will be compiled for debugging | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | plsql_code_type | STRING | native | specifies the compilation mode for PL/SQL library units | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | native | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | tde_method | STRING | none | none : transparent encryption is none, none means cannot use tde, internal : transparent encryption is in the form of internal tables, bkmi : transparent encryption is in the form of external bkmi | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | external_kms_info | STRING | | when using the external key management center, this parameter will store some key management information | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_enable_batched_multi_statement | BOOL | False | enable use of batched multi statement | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | backup_data_file_size | CAPACITY | 4G | backup data file size. Range: [512M, 4G] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4G | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_strategy | STRING | ASYNCHRONOUS | the logging method used by the audit log plugin. ASYNCHRONOUS: Log asynchronously. Wait for space in the output buffer. PERFORMANCE: Log asynchronously. Drop requests when there is insufficient buffer. SYNCHRONOUS: Log synchronously. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ASYNCHRONOUS | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_rotate_on_size | CAPACITY | 256M | [0,)whenever a write to the audit log file causes its size to exceed the config value, it will be renamed and a new audit log file using is opened, range: [0,) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_query_sql | STRING | ALL | how to record the query sql. ALL: record the original query sql. DESENSITIVE: record the desensitive query sql. NONE: not to record query sql. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_prune_seconds | INT | 0 | the number of seconds after which audit log files become subject to pruning, range: [0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_max_size | CAPACITY | 0M | the maximum combined size of the audit log files | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_format | STRING | CSV | the audit log file format, values: CSV | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | CSV | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_path | STRING | | the directory of the audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_compression | STRING | NONE | the type of compression for the audit log file, values: NONE, ZSTD | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_buffer_size | CAPACITY | 16M | [16M,)the buffer size of async audit logRange: [16M, total size of memory] | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 16M | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_log_enable | BOOL | False | whether enable audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_trail | STRING | None | enables or disables database auditing, support NONE;OS;DB;DB,EXTENDED;DB_EXTENDED | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | None | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | audit_sys_operations | BOOL | False | whether trace sys user operations | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | sql_work_area | CAPACITY | 1G | Work area memory limitation for tenant | OBSERVER | TENANT | DEFAULT | STATIC_EFFECTIVE | 1G | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ob_compaction_schedule_interval | TIME | 120s | the time interval to schedule compaction, Range: [3s,5m]Range: [3s, 5m] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | major_compact_trigger | INT | 0 | specifies how many minor freeze should be triggered between two major freeze, Range: [0,65535] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | minor_compact_trigger | INT | 2 | minor_compact_trigger, Range: [0,16] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ddl_thread_score | INT | 0 | the current work thread score of ddl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ha_low_thread_score | INT | 0 | the current work thread score of high availability low thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ha_mid_thread_score | INT | 0 | the current work thread score of high availability mid thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ha_high_thread_score | INT | 0 | the current work thread score of high availability high thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compaction_high_thread_score | INT | 0 | the current work thread score of high priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compaction_mid_thread_score | INT | 0 | the current work thread score of middle priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compaction_low_thread_score | INT | 0 | the current work thread score of low priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compaction_schedule_tablet_batch_cnt | INT | 50000 | the batch size when scheduling tablet to execute compaction task. Range: [10000,200000] in integer. default value is 50000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compaction_dag_cnt_limit | INT | 15000 | the compaction dag count limit. Range: [10000,200000] in integer. default value is 15000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15000 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | rpc_memory_limit_percentage | INT | 0 | maximum memory for rpc in a tenant, as a percentage of total tenant memory, and 0 means no limit to rpc memory | RPC | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_early_lock_release | BOOL | True | enable early lock release | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | merger_check_interval | TIME | 10m | the time interval between the schedules of the task that checks on the progress of MERGE for each zone. Range: [10s, 60m] | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | major_freeze_duty_time | MOMENT | 02:00 | the start time of system daily merge procedure. Range: [00:00, 24:00) | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 02:00 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | partition_balance_schedule_interval | TIME | 2h | the time interval between generate partition balance task. The value should be no less than balancer_idle_time to enable partition balance. Default value 2h and the value 0s means disable partition balance. Range: [0s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | balancer_idle_time | TIME | 10s | the time interval between the schedules of the tenant load-balancing task. Range: [10s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_transfer | BOOL | True | controls whether transfers are allowed in the tenant. This config does not take effect when enable_rebalance is disabled. Value: True:turned on False:turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_rebalance | BOOL | True | specifies whether the tenant load-balancing is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | standby_db_preferred_upstream_log_region | STRING | | The preferred upstream log region for Standby db. The Standby db will give priority to the preferred upstream log region to fetch log. For high availability,the Standby db will also switch to the other region when the preferred upstream log region can not fetch log because of exception etc. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | archive_lag_target | TIME | 120s | The lag target of the log archive. The log archive target affects not only the backup availability, but also the lag of the standby database based on archive. Values larger than 7200s are not reasonable lag. The typical value is 120s. Extremely low values can result in high IOPS, which is not optimal for object storage; such values can also affect the performance of the database. The value 0ms means to archive as soon as possible. Range: [0ms,7200s] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | standby_db_fetch_log_rpc_timeout | TIME | 15s | The threshold for detecting the RPC timeout for the standby tenant to fetch log from the log restore source tenant. When the rpc timeout, the log transport service switches to another server of the log restore source tenant to fetch logs. Range: [2s, +∞) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | ls_gc_delay_time | TIME | 0s | The max delay time for ls gc when log archive is off. The default value is 0s. Range: [0s, +∞). The ls delay deletion mechanism will no longer take effect when the tenant is dropped. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_throttling_maximum_duration | TIME | 2h | maximum duration of log disk throttling, that is the time remaining until the log disk space is exhausted after log disk throttling triggered. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_throttling_percentage | INT | 60 | the threshold of the size of the log disk when writing_limit will be triggered. Rang:[40,100]. setting 100 means turn off writing limit | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_utilization_threshold | INT | 80 | log disk utilization threshold before reuse log files, should be smaller than log_disk_utilization_limit_threshold. Range: [10, 100) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_disk_utilization_limit_threshold | INT | 95 | maximum of log disk usage percentage before stop submitting or receiving logs, should be bigger than log_disk_utilization_threshold. Range: [80, 100] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 95 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_archive_concurrency | INT | 0 | log archive concurrency, for both archive fetcher and sender. If the value is default 0, the database will automatically calculate the number of archive worker threads based on the tenant specification, which is tenant max_cpu divided by 4; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_restore_concurrency | INT | 0 | log restore concurrency, for both the restore tenant and standby tenant. If the value is default 0, the database will automatically calculate the number of restore worker threads based on the tenant specification, which is tenant max_cpu; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_storage_compress_func | STRING | lz4_1.0 | specifies the algorithms used for log storage compression. Values: lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_storage_compress_all | BOOL | False | specifies whether to compress logs before storing. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_transport_compress_func | STRING | lz4_1.0 | compressor used for log transport. Values: none, lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | log_transport_compress_all | BOOL | False | If this option is set to true, use compression for log transport. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | compatible | VERSION | 4.3.4.0 | compatible version for persisted data | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | workarea_size_policy | STRING | AUTO | policy used to size SQL working areas (MANUAL/AUTO) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | AUTO | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_progressive_merge_num | INT | 0 | default progressive_merge_num when tenant create tableRange:[0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | writing_throttling_maximum_duration | TIME | 2h | maximum duration of writting throttling(in minutes), max value is 3 days | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | writing_throttling_trigger_percentage | INT | 60 | the threshold of the size of the mem store when writing_limit will be triggered. Rang:(0,100]. setting 100 means turn off writing limit | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | freeze_trigger_percentage | INT | 20 | the threshold of the size of the mem store when freeze will be triggered. Rang:(0,100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | undo_retention | INT | 1800 | the low threshold value of undo retention. The system retains undo for at least the time specified in this config when active txn protection is banned. Range: [0, 4294967295] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1800 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | px_workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated px workers vs the maximum number of threads that can be scheduled concurrently. Range: [0, 20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | cpu_quota_concurrency | DOUBLE | 10 | max allowed concurrency for 1 CPU quota. Range: [1,20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 0 |
| zone3 | observer | 10.1.250.157 | 2882 | enable_monotonic_weak_read | BOOL | False | specifies observer supportting atomicity and monotonic order read | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | max_stale_time_for_weak_consistency | TIME | 5s | the max data stale time that cluster weak read version behind current timestamp,no smaller than weak_read_version_refresh_interval, range: [5s, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | spill_compression_codec | STRING | NONE | specific the compression algorithm type to compress the spilled data in temp block store during the sql execution phase. The supported compression codecs are: ZSTD, LZ4, SNAPPY, ZLIB. NONE means no compression.The default value is NONE. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_transport_compress_threshold | CAPACITY | 10K | Together with the configuration item kv_transport_compress_func, it is used to specify the minimum threshold size of the OBKV query result set that needs to be compressed. Range: [0, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10K | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | kv_transport_compress_func | STRING | none | compressor used for tableAPI query result. Values: none, lz4_1.0, snappy_1.0, zlib_1.0, zstd_1.0 zstd 1.3.8 | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | storage_rowsets_size | INT | 8192 | the row number processed by vectorized storage engine within one batch in column storage. Range: (0,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone3 | observer | 10.1.250.157 | 2882 | default_table_store_format | STRING | row | Specify the default storage format of creating table: row, column, compound format of row and columnvalues: row, column, compound | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | row | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | writing_throttling_trigger_percentage | INT | 60 | the threshold of the size of the mem store when writing_limit will be triggered. Rang:(0,100]. setting 100 means turn off writing limit | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | freeze_trigger_percentage | INT | 20 | the threshold of the size of the mem store when freeze will be triggered. Rang:(0,100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | undo_retention | INT | 1800 | the low threshold value of undo retention. The system retains undo for at least the time specified in this config when active txn protection is banned. Range: [0, 4294967295] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1800 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | px_workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated px workers vs the maximum number of threads that can be scheduled concurrently. Range: [0, 20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | cpu_quota_concurrency | DOUBLE | 10 | max allowed concurrency for 1 CPU quota. Range: [1,20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 0 |
| zone1 | observer | 10.1.250.161 | 2882 | enable_monotonic_weak_read | BOOL | False | specifies observer supportting atomicity and monotonic order read | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | max_stale_time_for_weak_consistency | TIME | 5s | the max data stale time that cluster weak read version behind current timestamp,no smaller than weak_read_version_refresh_interval, range: [5s, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | spill_compression_codec | STRING | NONE | specific the compression algorithm type to compress the spilled data in temp block store during the sql execution phase. The supported compression codecs are: ZSTD, LZ4, SNAPPY, ZLIB. NONE means no compression.The default value is NONE. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_transport_compress_threshold | CAPACITY | 10K | Together with the configuration item kv_transport_compress_func, it is used to specify the minimum threshold size of the OBKV query result set that needs to be compressed. Range: [0, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10K | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | kv_transport_compress_func | STRING | none | compressor used for tableAPI query result. Values: none, lz4_1.0, snappy_1.0, zlib_1.0, zstd_1.0 zstd 1.3.8 | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | storage_rowsets_size | INT | 8192 | the row number processed by vectorized storage engine within one batch in column storage. Range: (0,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone1 | observer | 10.1.250.161 | 2882 | default_table_store_format | STRING | row | Specify the default storage format of creating table: row, column, compound format of row and columnvalues: row, column, compound | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | row | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_storage_s3_url_encode_type | STRING | default | Determines the URL encoding method for S3 requests."default": Uses the S3 standard URL encoding method."compliantRfc3986Encoding": Uses URL encoding that adheres to the RFC 3986 standard. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | default | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | _enable_dbms_job_package | BOOL | False | Control whether can use DBMS_JOB package. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_ob_error_msg_style | BOOL | True | A switch that determines whether to use the ORA-xx or OBE-xx error code format for ORA error codes, with a default value of True to use the OBE-xx format.The default value is True. Value: False means we use the ORA-xx format, True means we use the OBE-xx format. | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | strict_check_os_params | BOOL | False | A switch that determines whether to enable strict OS parameter check mode, defaulting to true and can be set to false to bypass strict checks.Value: True: allowed; False: allowed but not suggested | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_rpc_authentication_bypass | BOOL | True | specifies whether allow OMS service to connect cluster and provide service when rpc authentication is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sql_protocol_min_tls_version | STRING | none | SQL SSL control options, used to specify the minimum SSL/TLS version number. values: none, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rpc_server_authentication_method | STRING | ALL | specifies rpc server authentication method. ALL: support all authentication methods. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rpc_client_authentication_method | STRING | NONE | specifies rpc client authentication method. NONE: without authentication. SSL_NO_ENCRYPT: authentication by SSL handshake but not encrypt the communication channel. SSL_IO: authentication by SSL handshake and encrypt the communication channel | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | observer_id | INT | 2 | the unique id that been assigned by rootservice for each observer in cluster, default: 0 (invalid id), Range: [1, 18446744073709551615] | OBSERVER | CLUSTER | DEFAULT | READONLY | 0 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | local_ip | STRING | 10.1.250.160 | the IP address of the machine on which the ObServer will be installed | OBSERVER | CLUSTER | DEFAULT | READONLY | | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_dblink | BOOL | True | Enable or disable dblink | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | global_background_cpu_quota | DOUBLE | -1 | When enable_global_background_resource_isolation is True, specify the number of vCPUs allocated to the background tasks-1 for the CPU is not limited by the cgroup | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | -1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_global_background_resource_isolation | BOOL | False | When set to false, foreground and background tasks are isolated within the tenant; When set to true, isolate background tasks individually upon tenant-level | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_cgroup | BOOL | True | when set to false, cgroup will not init; when set to true but cgroup root dir is not ready, print ERROR | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sql_net_thread_count | INT | 0 | the number of global mysql I/O threads. Range: [0, 64] in integer, default value is 0, 0 stands for old value GCONF.net_thread_count | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sql_login_thread_count | INT | 0 | the number of threads for sql login request. Range: [0, 32] in integer, 0 stands for use default thread count defined in TG.the default thread count for login request in TG is normal:6 mini-mode:2 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tcp_keepcnt | INT | 10 | The maximum number of keepalive probes TCP should send before dropping the connection. Take effect for new established connections. Range: [1,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tcp_keepintvl | TIME | 6s | The time (in seconds) between individual keepalive probes. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tcp_keepidle | TIME | 7200s | The time (in seconds) the connection needs to remain idle before TCP starts sending keepalive probe. Take effect for new established connections. Range: [1s, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7200s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_tcp_keepalive | BOOL | True | enable TCP keepalive for the TCP connection of sql protocol. Take effect for new established connections. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_ratelimit_stat_period | TIME | 1s | the time interval to update observer's maximum bandwidth to a certain region. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_ob_ratelimit | BOOL | False | enable ratelimit between regions for RPC connection. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ssl_external_kms_info | STRING | | when using the external key management center for ssl, this parameter will store some key management information | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | use_large_pages | STRING | false | used to manage the database's use of large pages, values: false, true, only | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | false | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | schema_history_recycle_interval | TIME | 10m | the time interval between the schedules of schema history recyle task. Range: [0s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | _bloom_filter_ratio | INT | 3 | the px bloom filter false-positive rate.the default value is 1, range: [0,100] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 35 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | use_ipv6 | BOOL | False | Whether this server uses ipv6 address | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ssl_client_authentication | BOOL | False | enable server SSL support. Takes effect after ca/cert/key file is configured correctly. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | stack_size | CAPACITY | 512K | the size of routine execution stackRange: [512K, 20M] | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 512K | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | px_task_size | CAPACITY | 2M | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | dtl_buffer_size | CAPACITY | 64K | to be removed | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 64K | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | micro_block_merge_verify_level | INT | 2 | specify what kind of verification should be done when merging micro block. 0 : no verification will be done 1 : verify encoding algorithm, encoded micro block will be read to ensure data is correct 2 : verify encoding and compression algorithm, besides encoding verification, compressed block will be decompressed to ensure data is correct3 : verify encoding, compression algorithm and lost write protect | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | builtin_db_data_verify_cycle | INT | 20 | check cycle of db data. Range: [0, 360] in integer. Unit: day. 0: check nothing. 1-360: check all data every specified days. The default value is 20. The real check cycle maybe longer than the specified value for insuring performance. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tablet_size | CAPACITY | 128M | default tablet size, has to be a multiple of 2M | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sys_bkgd_migration_change_member_list_timeout | TIME | 20s | the timeout for migration change member list retry. The default value is 20s. Range: [0s,24h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sys_bkgd_migration_retry_num | INT | 3 | retry num limit during migration. Range: [3, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sync_io_thread_count | INT | 0 | The number of io threads for synchronizing request on each device. The default value is 0. Range: [0,1024] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | disk_io_thread_count | INT | 8 | The number of io threads on each disk. The default value is 8. Range: [2,32] in even integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sys_bkgd_net_percentage | INT | 60 | the net percentage of sys background net. Range: [0, 100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | data_disk_usage_limit_percentage | INT | 90 | the safe use percentage of data diskRange: [50,100] in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 90 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | data_storage_error_tolerance_time | TIME | 300s | time to tolerate disk read failure, after that, the disk status will be set error. Range [10s,7200s]. The default value is 300s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 300s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | data_storage_warning_tolerance_time | TIME | 5s | time to tolerate disk read failure, after that, the disk status will be set warning. Range [1s,300s]. The default value is 5s | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | storage_meta_cache_priority | INT | 10 | storage meta cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | fuse_row_cache_priority | INT | 1 | fuse row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | bf_cache_miss_count_threshold | INT | 100 | bf cache miss count threshold, 0 means disable bf cache. Range:[0, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | bf_cache_priority | INT | 1 | bf cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | user_row_cache_priority | INT | 1 | user row cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | user_block_cache_priority | INT | 1 | user block cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | index_block_cache_priority | INT | 10 | index cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | opt_tab_stat_cache_priority | INT | 1 | tab stat cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tablet_ls_cache_priority | INT | 1000 | tablet ls cache priority. Range:[1, ) | CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | location_cache_refresh_sql_timeout | TIME | 1s | The timeout used for refreshing location cache by SQL. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | location_cache_refresh_rpc_timeout | TIME | 500ms | The timeout used for refreshing location cache by RPC. Range: [1ms, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | all_server_list | STRING | 10.1.250.157:2882,10.1.250.160:2882,10.1.250.161:2882 | all server addr in cluster | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | location_cache_refresh_min_interval | TIME | 100ms | the time interval in which no request for location cache renewal will be executed. The default value is 100 milliseconds. [0s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | location_fetch_concurrency | INT | 20 | the maximum number of the tasks for fetching location cache concurrently. Range: [1, 1000] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | location_refresh_thread_count | INT | 2 | the number of threads for fetching location cache in the background. Range: (1, 64] | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | virtual_table_location_cache_expire_time | TIME | 8s | expiration time for virtual table location info in partition location cache. Range: [1s, +∞) | LOCATION_CACHE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 8s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | standby_fetch_log_bandwidth_limit | CAPACITY | 0MB | the max bandwidth in bytes per second that can be occupied by the sum of the synchronizing log from primary cluster of all servers in the standby cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0MB | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rpc_timeout | TIME | 2s | the time during which a RPC request is permitted to execute before it is terminated | RPC | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ignore_replay_checksum_error | BOOL | False | specifies whether error raised from the memtable replay checksum validation can be ignored. Value: True:ignored; False: not ignored | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | row_compaction_update_limit | INT | 6 | maximum update count before trigger row compaction. Range: [1, 6400] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 6 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | clog_sync_time_warn_threshold | TIME | 100ms | the time given to the commit log synchronization between a leader and its followers before a \'warning\' message is printed in the log file. Range: [1ms,1000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | trx_2pc_retry_interval | TIME | 100ms | the time interval between the retries in case of failure during a transaction\'s two-phase commit phase. Range: [1ms,5000ms] | TRANS | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_sys_unit_standalone | BOOL | False | specifies whether sys unit standalone deployment is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_balance_cpu_mem_tolerance_percent | INT | 5 | specifies the tolerance (in percentage) of the unbalance of the cpu/memory utilization among all servers. The average cpu/memory utilization is calculated by dividing the total cpu/memory by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_balance_disk_tolerance_percent | INT | 1 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all servers. The average disk space utilization is calculated by dividing the total space by the number of servers. server balancer will start a rebalancing task when the deviation between the average usage and some server load is greater than this tolerance Range: [1, 100] in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_balance_critical_disk_waterlevel | INT | 80 | disk water level to determine server balance strategy | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | __min_full_resource_pool_memory | INT | 2147483648 | the min memory value which is specified for a full resource pool. | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5368709120 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | balancer_log_interval | TIME | 1m | the time interval between logging the load-balancing task\'s statistics. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1m | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | balancer_task_timeout | TIME | 20m | the time to execute the load-balancing task before it is terminated. Range: [1s, +∞) | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 20m | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | balancer_tolerance_percentage | INT | 10 | specifies the tolerance (in percentage) of the unbalance of the disk space utilization among all units. The average disk space utilization is calculated by dividing the total space by the number of units. For example, say balancer_tolerance_percentage is set to 10 and a tenant has two units in the system, the average disk use for each unit should be about the same, thus 50% of the total value. Therefore, the system will start a rebalancing task when any unit\'s disk space goes beyond +-10% of the average usage. Range: [1, 100) in percentage | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_rereplication | BOOL | True | specifies whether the auto-replication is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | resource_hard_limit | INT | 100 | system utilization should not be large than resource_hard_limit | LOAD_BALANCE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | arbitration_degradation_policy | STRING | LS_POLICY | specifies the degradation policy, whether to check network connectivity with RS before arbitration degrades. Value: LS_POLICY, CLUSTER_POLICY LS_POLICY: default policy. CLUSTER_POLICY: check network connectivity with RS before arbitration degrades. Do not degrade when not connected. Then, switch log stream leaders to the replicas which are connected with RS. | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | LS_POLICY | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_storage_warning_tolerance_time | TIME | 5s | time to tolerate log disk io delay, after that, the disk status will be set warning. Range: [1s,300s] | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_percentage | INT | 0 | the percentage of disk space used by the log files. Range: [0,99] in integer;only effective when parameter log_disk_size is 0;when log_disk_percentage is 0: a) if the data and the log are on the same disk, means log_disk_percentage = 30 b) if the data and the log are on the different disks, means log_disk_perecentage = 90 | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_size | CAPACITY | 192G | the size of disk space used by the log files. Range: [0, +∞) | LOGSERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | recyclebin_object_expire_time | TIME | 0s | recyclebin object expire time, default 0 that means auto purge recyclebin off. Range: [0s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_event_history_recycle_interval | TIME | 7d | the time to recycle event history. Range: [1d, 180d] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_crazy_medium_compaction | BOOL | False | enables triggering medium compaction repeatly. The default value is False. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_major_freeze | BOOL | True | specifies whether major_freeze function is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_ddl | BOOL | True | specifies whether DDL operation is turned on. Value: True:turned on; False: turned off | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | min_observer_version | STRING | 4.3.4.0 | the min observer version | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tablet_meta_table_check_interval | TIME | 30m | the time interval that observer compares tablet meta table with local ls replica info and make adjustments to ensure the correctness of tablet meta table. Range: [1m,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30m | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ls_meta_table_check_interval | TIME | 1s | the time interval that observer compares ls meta table with local ls replica info and make adjustments to ensure the correctness of ls meta table. Range: [1ms,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tablet_meta_table_scan_batch_count | INT | 999 | the number of tablet replica info that will be read by each request on the tablet-related system tables during procedures such as load-balancing, daily merge, election and etc. Range:(0,65536] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 999 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rootservice_ready_check_interval | TIME | 3s | the interval between the schedule of the rootservice restart task while restart failed Range: [100000us, 1m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_check_interval | TIME | 30s | the time interval between schedules of a task that examines the __all_server table. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | migration_disable_time | TIME | 3600s | the duration in which the observer stays in the \'block_migrate_in\' status, which means it is not allowed to migrate into the server. Range: [1s, +∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_permanent_offline_time | TIME | 3600s | the time interval between any two heartbeats beyond which a server is considered to be \'permanently\' offline. Range: [20s,+∞) | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_sys_table_ddl | BOOL | False | specifies whether a \'system\' table is allowed be to created manually. Value: True: allowed; False: not allowed | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rootservice_async_task_queue_size | INT | 16384 | the size of the queue for all asynchronous tasks at rootserver. Range: [8, 131072] in integer | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rootservice_async_task_thread_count | INT | 4 | maximum of threads allowed for executing asynchronous task at rootserver. Range: [1, 10] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | lease_time | TIME | 10s | Lease for current heartbeat. If the root server does not received any heartbeat from an observer in lease_time seconds, that observer is considered to be offline. Not recommended for modification. Range: [1s, 5m] | ROOT_SERVICE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | plan_cache_evict_interval | TIME | 5s | time interval for periodic plan cache eviction. Range: [0s, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | data_disk_write_limit_percentage | INT | 0 | used to stop user write operations. When the user data disk reaches this watermark, SQL requests will report that the disk is full. The configuration should be greater than data_disk_usage_limit_percentage, with the recommended setting being: (1 - memstore_limit_size / data_disk_size) * 100% | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | memstore_limit_percentage | INT | 0 | used in calculating the value of MEMSTORE_LIMIT parameter: memstore_limit_percentage = memstore_limit / memory_size, where MEMORY_SIZE is determined when the tenant is created. Range: [0, 100). 1. the system will use memstore_limit_percentage if only memstore_limit_percentage is set.2. the system will use _memstore_limit_percentage if both memstore_limit_percentage and _memstore_limit_percentage is set.3. the system will adjust automatically if both memstore_limit_percentage and _memstore_limit_percentage set to 0(by default). | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | large_query_threshold | TIME | 600s | threshold for execution time beyond which a request may be paused and rescheduled as a \'large request\', 0ms means disable \'large request\'. Range: [0ms, +∞) | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | large_query_worker_percentage | DOUBLE | 30 | the percentage of the workers reserved to serve large query request. Range: [0, 100] in percentage | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated workers vs the maximum number of threads that can be scheduled concurrently. Range: [2, 20] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | location_cache_cpu_quota | DOUBLE | 5 | the number of vCPUs allocated for the requests regarding location info of the core tables. Range: [0,10] in integer | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 5 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_cpu_quota_max | DOUBLE | 0 | the number of maximal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | server_cpu_quota_min | DOUBLE | 0 | the number of minimal vCPUs allocated to the server tenant(a special internal tenant that exists on every observer). 0 stands for adaptive. Range: [0, 16] | TENANT | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_sql_operator_dump | BOOL | True | specifies whether sql operators (sort/hash join/material/window function/interm result/...) allowed to write to disk | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | autoinc_cache_refresh_interval | TIME | 3600s | auto-increment service cache refresh sync_value in this interval, with default 3600s. Range: [100ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3600s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | memory_chunk_cache_size | CAPACITY | 0M | the maximum size of memory cached by memory chunk cache. Range: [0M,], 0 stands for adaptive | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | cache_wash_threshold | CAPACITY | 4GB | size of remaining memory at which cache eviction will be triggered. Range: [0,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 4GB | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | memory_limit_percentage | INT | 80 | the size of the memory reserved for internal use(for testing purpose). Range: [10, 95] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | syslog_file_uncompressed_count | INT | 0 | specifies the minimum number of the syslog files that will not be compressed. Each syslog file can occupy at most 256MB disk space. When this value is set to 0, all syslog file may be compressed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | syslog_compress_func | STRING | none | compress function name for syslog files, values: none, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | syslog_disk_size | CAPACITY | 0M | the size of disk space used by the syslog files. Range: [0, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_syslog_recycle | BOOL | True | specifies whether log file recycling is turned on. Value: True:turned on; False: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_syslog_wf | BOOL | False | specifies whether any log message with a log level higher than \'WARN\' would be printed into a separate file with a suffix of \'wf\' | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_async_syslog | BOOL | True | specifies whether use async log for observer.log, elec.log and rs.log | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | max_syslog_file_count | INT | 4 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | diag_syslog_per_error_limit | INT | 200 | DIAG syslog limitation for each error per second, exceeding syslog would be truncated | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 200 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | syslog_io_bandwidth_limit | CAPACITY | 30MB | Syslog IO bandwidth limitation, exceeding syslog would be truncated. Use 0 to disable ERROR log. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30MB | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | alert_log_level | STRING | INFO | specifies the current level of alert log. There are INFO, WARN, ERROR, three different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | INFO | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | syslog_level | STRING | ERROR | specifies the current level of logging. There are DEBUG, TRACE, WDIAG, EDIAG, INFO, WARN, ERROR, seven different log levels. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | WDIAG | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | obconfig_url | STRING | http://10.1.28.181:8080/services?Action=ObRootServiceInfo&User_ID=alibaba&UID=ocpmaster&ObRegion=stagoceanbase | URL for OBConfig service | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | cluster_id | INT | 1727163816 | ID of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | cluster | STRING | stagoceanbase | Name of the cluster | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | obcluster | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | rootservice_list | STR_LIST | 10.1.250.157:2882:2881;10.1.250.160:2882:2881;10.1.250.161:2882:2881 | a list of servers against which election candidate is checked for validation | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | weak_read_version_refresh_interval | TIME | 100ms | the time interval to refresh cluster weak read version Range: [50ms, +∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 100ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_compress | STRING | archive | default compress strategy for create new table within oracle mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | archive | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_row_format | STRING | dynamic | default row format in mysql mode | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | dynamic | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_compress_func | STRING | zstd_1.3.8 | default compress function name for create new table, values: none, lz4_1.0, snappy_1.0, zstd_1.0, zstd_1.3.8 | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | zstd_1.3.8 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | schema_history_expire_time | TIME | 7d | the hour of expire time for schema history, from 1hour to 30days, with default 7days. Range: [1h, 30d] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_upgrade_mode | BOOL | False | specifies whether upgrade mode is turned on. If turned on, daily merger and balancer will be disabled. Value: True: turned on; False: turned off; | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_perf_event | BOOL | True | specifies whether to enable perf event feature. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | dead_socket_detection_timeout | TIME | 3s | specify a tcp_user_timeout for RFC5482. A zero value makes the option disabled, Range: [0, 2h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 3s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | debug_sync_timeout | TIME | 0 | Enable the debug sync facility and optionally specify a default wait timeout in micro seconds. A zero value keeps the facility disabled, Range: [0, +∞] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_rich_error_msg | BOOL | False | specifies whether add ip:port, time and trace id to user error message. The default value is FALSE. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_record_trace_id | BOOL | False | specifies whether record app trace id is turned on. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_sql_audit | BOOL | True | specifies whether SQL audit is turned on. The default value is TRUE. Value: TRUE: turned on FALSE: turned off | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | true | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | max_string_print_length | INT | 500 | truncate very long string when printing to log file. Range:[0,] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_record_trace_log | BOOL | False | specifies whether to always record the trace log. The default value is True. | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | True | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | trace_log_slow_query_watermark | TIME | 1s | the threshold of execution time (in milliseconds) of a query beyond which it is considered to be a \'slow query\'. Range: [1ms,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 1s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | cpu_count | INT | 0 | the number of CPU\'s in the system. If this parameter is set to zero, the number will be set according to sysconf; otherwise, this parameter is used. Range: [0,+∞) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | system_memory | CAPACITY | 6G | the memory reserved for internal use which cannot be allocated to any outer-tenant, and should be determined to guarantee every server functions normally. Range: [0M,) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | memory_limit | CAPACITY | 64G | the size of the memory reserved for internal use(for testing purpose), 0 means follow memory_limit_percentage. Range: 0, [1G,). | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | tenant_task_queue_size | INT | 16384 | the size of the task queue for each tenant. Range: [1024,+∞) | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 16384 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | high_priority_net_thread_count | INT | 0 | the number of rpc I/O threads for high priority messages, 0 means set off. Range: [0, 64] in integer | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | net_thread_count | INT | 0 | the number of rpc/mysql I/O threads for Libeasy. Range: [0, 64] in integer, 0 stands for max(6, CPU_NUM/8) | OBSERVER | CLUSTER | DEFAULT | STATIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | internal_sql_execute_timeout | TIME | 30s | the number of microseconds an internal DML request is permitted to execute before it is terminated. Range: [1000us, 1h] | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 30s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_startup_mode | STRING | NORMAL | specifies the observer startup mode | OBSERVER | CLUSTER | DEFAULT | READONLY | NORMAL | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | zone | STRING | zone2 | specifies the zone name | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | devname | STRING | eno1 | name of network adapter | OBSERVER | CLUSTER | DEFAULT | READONLY | bond0 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | mysql_port | INT | 2881 | port number for mysql connection. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2881 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rpc_port | INT | 2882 | the port number for RPC protocol. Range: (1024, 65536) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 2882 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | leak_mod_to_check | STRING | NONE | the name of the module under memory leak checks | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | config_additional_dir | STR_LIST | etc2;etc3 | additional directories of configure file | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | etc2;etc3 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | memory_reserved | CAPACITY | 500M | the size of the system memory reserved for emergency internal use. Range: [10M, total size of memory] | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 500M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | datafile_disk_percentage | INT | 0 | the percentage of disk space used by the data files. Range: [0,99] in integer | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | datafile_maxsize | CAPACITY | 0 | the auto extend max size. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | datafile_next | CAPACITY | 0 | the auto extend step. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | datafile_size | CAPACITY | 192G | size of the data file. Range: [0, +∞) | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | redundancy_level | STRING | NORMAL | EXTERNAL: use extrernal redundancyNORMAL: tolerate one disk failureHIGH: tolerate two disk failure if disk count is enough | SSTABLE | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE | NORMAL | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | data_dir | STRING | /data1/stag_oceanbase/observer7/store | the directory for the data file | SSTABLE | CLUSTER | DEFAULT | READONLY | store | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_encoding_granularity | INT | 65536 | Maximum rows for encoding in one micro block. Range:[8192,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 65536 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_vector_memory_limit_percentage | INT | 0 | Used to control the upper limit percentage of memory resources that the vector_index module can use. Range:[0, 100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_group_commit_rw_mode | STRING | ALL | Used to specify the read/write operation types when group commit is enable. Values: 'ALL' means enable all operations, 'READ' mean only enable read operation in group commit, 'WRITE' means only write operations in group commit. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_group_commit_batch_size | INT | 1 | Used to specify the batch size of each group commit batch in OBKV. Values: 1 means sinlge operaion in each batch, equally to disable group commit. When batch size is greater than 1, it means group commit is enable and used as its batch size. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | direct_load_allow_fallback | BOOL | False | Control whether an error is reported when direct load of the derivative operation scenario is not supported. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_load_mode | STRING | DISABLED | Specifies default load data path."DISABLED" represent load data not in direct load path (default value)."FULL_DIRECT_WRITE" represent load data in full direct load path with insert semantics."INC_DIRECT_WRITE" represent load data in inc direct load path with insert semantics."INC_REPLACE_DIRECT_WRITE" represent load data in inc direct load path with replace semantics. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | DISABLED | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sql_plan_management_mode | STRING | Disable | Specifies how spm work."Disable" represent disable spm (default value)."OnlineEvolve" represent evolve plan online. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | Disable | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | lob_enable_block_cache_threshold | CAPACITY | 256K | For outrow-stored LOBs, if the length is less than or equal to that threshold, they can be admitted into the block cache to speed up the next query. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256K | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | choose_migration_source_policy | STRING | region | the policy of choose source in migration and add replica. 'idc' means firstly choose follower replica of the same idc as source, 'region' means firstly choose follower replica of the same region as source | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | region | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | json_document_max_depth | INT | 100 | maximum nesting depth allowed in a JSON document | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 100 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | max_partition_num | INT | 8192 | set max partition num in mysql mode | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | optimizer_index_cost_adj | INT | 0 | adjust costing of index scan | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_hbase_client_scanner_timeout_period | INT | 60000 | OBKV Hbase client scanner query timeout, which unit is milliseconds. Range: (0, +∞) in integer. Especially, 60000 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | shared_log_retention | TIME | 1d | Retention time of log files on shared storage | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1d | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ttl_thread_score | INT | 0 | the current work thread score of ttl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_kv_ttl | BOOL | False | specifies whether ttl task is enbled | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_ttl_history_recycle_interval | TIME | 7d | the time to recycle ttl history. Range: [1d, 180d] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 7d | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_ttl_duty_duration | STRING | | ttl background task working time durationbegin_time or end_time in Range, e.g., [23:00:00, 24:00:00] | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | auto_split_tablet_size | CAPACITY | 128M | when create an auto-partitioned table in "create table" syntax or modify a table as an auto-partitioned table in "alter table" syntax,if the splitting threshold of tablet size is not setted,this config will be setted as the threshold of the table.Note that the modification of this config will not affect the created auto-partitioned table.Range: [128M, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_auto_split | BOOL | False | if the auto-partition clause is not usedthis config judge whether to enable auto-partition for creating table. | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | range_optimizer_max_mem_size | CAPACITY | 128M | to limit the memory consumption for the query range optimizer. Range: [0M,+∞), 0 stands for unlimited | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 128M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_user_defined_rewrite_rules | BOOL | False | specify whether the user defined rewrite rules are enabled. Value: True: enable False: disable | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | dump_data_dictionary_to_log_interval | TIME | 24h | data dictionary dump to log(SYS LS) intervalRange: (0s,+∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 24h | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tenant_sql_net_thread_count | INT | 0 | the number of mysql I/O threads for a tenant. Range: [0, 64] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tenant_sql_login_thread_count | INT | 0 | the number of threads for sql login request of each tenant. Range: [0, 32] in integer, 0 stands for unit_min_cpu | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | arbitration_timeout | TIME | 5s | The timeout before automatically degrading when arbitration member exists. Range: [3s,+∞] | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | query_response_time_range_base | INT | 10 | Select base of log for QUERY_RESPONSE_TIME ranges. WARNING: variable change takes affect only after flush.The default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | query_response_time_flush | BOOL | False | Flush QUERY_RESPONSE_TIME table and re-read query_response_time_range_baseThe default value is False. Value: TRUE: trigger flush FALSE: do not trigger | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | query_response_time_stats | BOOL | False | Enable or disable QUERY_RESPONSE_TIME statistics collectingThe default value is False. Value: TRUE: turned on FALSE: turned off | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_enable_extended_rowid | BOOL | False | specifies whether to create table as extended rowid mode or not | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_query_switch_leader_retry_timeout | TIME | 0ms | max time spend on retry caused by leader swith or network disconnectionRange: [0ms, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0ms | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_auto_increment_mode | STRING | order | specifies default auto-increment mode, default is 'order' | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | order | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_sql_extension | BOOL | False | specifies whether to allow use some oracle mode features in mysql mode | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | job_queue_processes | INT | 1000 | specifies the maximum number of job slaves per instance that can be created for the execution of DBMS_JOB jobs and Oracle Scheduler (DBMS_SCHEDULER) jobs. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_proxy_readonly_transaction_routing_policy | BOOL | False | Proxy route policy for readonly sql: whether regard begining read only stmts as in transaction | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | connection_control_max_connection_delay | INT | 2147483647 | The maximum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2147483647 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | connection_control_min_connection_delay | INT | 1000 | The minimum delay in milliseconds for server response to failed connection attempts, if connection_control_failed_connections_threshold is greater than zero. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | connection_control_failed_connections_threshold | INT | 0 | The number of consecutive failed connection attempts permitted to accountsbefore the server adds a delay for subsequent connection attempts | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | open_cursors | INT | 50 | specifies the maximum number of open cursors a session can have at once.can use this parameter to prevent a session from opening an excessive number of cursors.Range: [0, 65535] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_ssl_invited_common_names | STRING | NONE | when server use ssl, use it to control client identity with ssl subject common name. default NONE | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | plsql_v2_compatibility | BOOL | False | allows to control store routine compile action at DDL stage | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | plsql_debug | BOOL | False | specifies whether or not PL/SQL library units will be compiled for debugging | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | plsql_code_type | STRING | native | specifies the compilation mode for PL/SQL library units | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | native | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | tde_method | STRING | none | none : transparent encryption is none, none means cannot use tde, internal : transparent encryption is in the form of internal tables, bkmi : transparent encryption is in the form of external bkmi | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | external_kms_info | STRING | | when using the external key management center, this parameter will store some key management information | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_enable_batched_multi_statement | BOOL | False | enable use of batched multi statement | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | backup_data_file_size | CAPACITY | 4G | backup data file size. Range: [512M, 4G] in integer | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4G | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_strategy | STRING | ASYNCHRONOUS | the logging method used by the audit log plugin. ASYNCHRONOUS: Log asynchronously. Wait for space in the output buffer. PERFORMANCE: Log asynchronously. Drop requests when there is insufficient buffer. SYNCHRONOUS: Log synchronously. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ASYNCHRONOUS | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_rotate_on_size | CAPACITY | 256M | [0,)whenever a write to the audit log file causes its size to exceed the config value, it will be renamed and a new audit log file using is opened, range: [0,) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 256M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_query_sql | STRING | ALL | how to record the query sql. ALL: record the original query sql. DESENSITIVE: record the desensitive query sql. NONE: not to record query sql. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | ALL | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_prune_seconds | INT | 0 | the number of seconds after which audit log files become subject to pruning, range: [0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_max_size | CAPACITY | 0M | the maximum combined size of the audit log files | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_format | STRING | CSV | the audit log file format, values: CSV | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | CSV | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_path | STRING | | the directory of the audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_compression | STRING | NONE | the type of compression for the audit log file, values: NONE, ZSTD | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_buffer_size | CAPACITY | 16M | [16M,)the buffer size of async audit logRange: [16M, total size of memory] | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 16M | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_log_enable | BOOL | False | whether enable audit log | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_trail | STRING | None | enables or disables database auditing, support NONE;OS;DB;DB,EXTENDED;DB_EXTENDED | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | None | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | audit_sys_operations | BOOL | False | whether trace sys user operations | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | sql_work_area | CAPACITY | 1G | Work area memory limitation for tenant | OBSERVER | TENANT | DEFAULT | STATIC_EFFECTIVE | 1G | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ob_compaction_schedule_interval | TIME | 120s | the time interval to schedule compaction, Range: [3s,5m]Range: [3s, 5m] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | major_compact_trigger | INT | 0 | specifies how many minor freeze should be triggered between two major freeze, Range: [0,65535] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | minor_compact_trigger | INT | 2 | minor_compact_trigger, Range: [0,16] in integer | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ddl_thread_score | INT | 0 | the current work thread score of ddl thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ha_low_thread_score | INT | 0 | the current work thread score of high availability low thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ha_mid_thread_score | INT | 0 | the current work thread score of high availability mid thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ha_high_thread_score | INT | 0 | the current work thread score of high availability high thread. Range: [0,100] in integer. Especially, 0 means default value | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compaction_high_thread_score | INT | 0 | the current work thread score of high priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compaction_mid_thread_score | INT | 0 | the current work thread score of middle priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compaction_low_thread_score | INT | 0 | the current work thread score of low priority compaction. Range: [0,100] in integer. Especially, 0 means default value | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compaction_schedule_tablet_batch_cnt | INT | 50000 | the batch size when scheduling tablet to execute compaction task. Range: [10000,200000] in integer. default value is 50000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 50000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compaction_dag_cnt_limit | INT | 15000 | the compaction dag count limit. Range: [10000,200000] in integer. default value is 15000 | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15000 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | rpc_memory_limit_percentage | INT | 0 | maximum memory for rpc in a tenant, as a percentage of total tenant memory, and 0 means no limit to rpc memory | RPC | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_early_lock_release | BOOL | True | enable early lock release | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | merger_check_interval | TIME | 10m | the time interval between the schedules of the task that checks on the progress of MERGE for each zone. Range: [10s, 60m] | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10m | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | major_freeze_duty_time | MOMENT | 02:00 | the start time of system daily merge procedure. Range: [00:00, 24:00) | DAILY_MERGE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 02:00 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | partition_balance_schedule_interval | TIME | 2h | the time interval between generate partition balance task. The value should be no less than balancer_idle_time to enable partition balance. Default value 2h and the value 0s means disable partition balance. Range: [0s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | balancer_idle_time | TIME | 10s | the time interval between the schedules of the tenant load-balancing task. Range: [10s, +∞) | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_transfer | BOOL | True | controls whether transfers are allowed in the tenant. This config does not take effect when enable_rebalance is disabled. Value: True:turned on False:turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_rebalance | BOOL | True | specifies whether the tenant load-balancing is turned on. Value: True:turned on False: turned off | LOAD_BALANCE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | True | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | standby_db_preferred_upstream_log_region | STRING | | The preferred upstream log region for Standby db. The Standby db will give priority to the preferred upstream log region to fetch log. For high availability,the Standby db will also switch to the other region when the preferred upstream log region can not fetch log because of exception etc. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | archive_lag_target | TIME | 120s | The lag target of the log archive. The log archive target affects not only the backup availability, but also the lag of the standby database based on archive. Values larger than 7200s are not reasonable lag. The typical value is 120s. Extremely low values can result in high IOPS, which is not optimal for object storage; such values can also affect the performance of the database. The value 0ms means to archive as soon as possible. Range: [0ms,7200s] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 120s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | standby_db_fetch_log_rpc_timeout | TIME | 15s | The threshold for detecting the RPC timeout for the standby tenant to fetch log from the log restore source tenant. When the rpc timeout, the log transport service switches to another server of the log restore source tenant to fetch logs. Range: [2s, +∞) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 15s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | ls_gc_delay_time | TIME | 0s | The max delay time for ls gc when log archive is off. The default value is 0s. Range: [0s, +∞). The ls delay deletion mechanism will no longer take effect when the tenant is dropped. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_throttling_maximum_duration | TIME | 2h | maximum duration of log disk throttling, that is the time remaining until the log disk space is exhausted after log disk throttling triggered. | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_throttling_percentage | INT | 60 | the threshold of the size of the log disk when writing_limit will be triggered. Rang:[40,100]. setting 100 means turn off writing limit | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_utilization_threshold | INT | 80 | log disk utilization threshold before reuse log files, should be smaller than log_disk_utilization_limit_threshold. Range: [10, 100) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 80 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_disk_utilization_limit_threshold | INT | 95 | maximum of log disk usage percentage before stop submitting or receiving logs, should be bigger than log_disk_utilization_threshold. Range: [80, 100] | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 95 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_archive_concurrency | INT | 0 | log archive concurrency, for both archive fetcher and sender. If the value is default 0, the database will automatically calculate the number of archive worker threads based on the tenant specification, which is tenant max_cpu divided by 4; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_restore_concurrency | INT | 0 | log restore concurrency, for both the restore tenant and standby tenant. If the value is default 0, the database will automatically calculate the number of restore worker threads based on the tenant specification, which is tenant max_cpu; otherwise set the the worker count equals to the value.Range: [0, 100] in integer | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_storage_compress_func | STRING | lz4_1.0 | specifies the algorithms used for log storage compression. Values: lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_storage_compress_all | BOOL | False | specifies whether to compress logs before storing. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_transport_compress_func | STRING | lz4_1.0 | compressor used for log transport. Values: none, lz4_1.0, zstd_1.0, zstd_1.3.8 | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | lz4_1.0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | log_transport_compress_all | BOOL | False | If this option is set to true, use compression for log transport. The default is false(no compression) | LOGSERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | False | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | compatible | VERSION | 4.3.4.0 | compatible version for persisted data | ROOT_SERVICE | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4.3.4.0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | workarea_size_policy | STRING | AUTO | policy used to size SQL working areas (MANUAL/AUTO) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | AUTO | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_progressive_merge_num | INT | 0 | default progressive_merge_num when tenant create tableRange:[0,) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 0 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | writing_throttling_maximum_duration | TIME | 2h | maximum duration of writting throttling(in minutes), max value is 3 days | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 2h | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | writing_throttling_trigger_percentage | INT | 60 | the threshold of the size of the mem store when writing_limit will be triggered. Rang:(0,100]. setting 100 means turn off writing limit | TRANS | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 60 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | freeze_trigger_percentage | INT | 20 | the threshold of the size of the mem store when freeze will be triggered. Rang:(0,100) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 20 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | undo_retention | INT | 1800 | the low threshold value of undo retention. The system retains undo for at least the time specified in this config when active txn protection is banned. Range: [0, 4294967295] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 1800 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | px_workers_per_cpu_quota | INT | 10 | the ratio(integer) between the number of system allocated px workers vs the maximum number of threads that can be scheduled concurrently. Range: [0, 20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | cpu_quota_concurrency | DOUBLE | 10 | max allowed concurrency for 1 CPU quota. Range: [1,20] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 4 | 0 |
| zone2 | observer | 10.1.250.160 | 2882 | enable_monotonic_weak_read | BOOL | False | specifies observer supportting atomicity and monotonic order read | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | false | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | max_stale_time_for_weak_consistency | TIME | 5s | the max data stale time that cluster weak read version behind current timestamp,no smaller than weak_read_version_refresh_interval, range: [5s, +∞) | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 5s | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | spill_compression_codec | STRING | NONE | specific the compression algorithm type to compress the spilled data in temp block store during the sql execution phase. The supported compression codecs are: ZSTD, LZ4, SNAPPY, ZLIB. NONE means no compression.The default value is NONE. | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | NONE | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_transport_compress_threshold | CAPACITY | 10K | Together with the configuration item kv_transport_compress_func, it is used to specify the minimum threshold size of the OBKV query result set that needs to be compressed. Range: [0, +∞) | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 10K | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | kv_transport_compress_func | STRING | none | compressor used for tableAPI query result. Values: none, lz4_1.0, snappy_1.0, zlib_1.0, zstd_1.0 zstd 1.3.8 | OBSERVER | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | none | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | storage_rowsets_size | INT | 8192 | the row number processed by vectorized storage engine within one batch in column storage. Range: (0,1048576] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | 8192 | 1 |
| zone2 | observer | 10.1.250.160 | 2882 | default_table_store_format | STRING | row | Specify the default storage format of creating table: row, column, compound format of row and columnvalues: row, column, compound | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE | row | 1 |
+-------+----------+--------------+----------+-------------------------------------------------+-----------+----------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------+---------+---------+-------------------+---------------+-----------+
SQL_AUDIT 信息
SVR_IP |
SVR_PORT |
REQUEST_ID |
SQL_EXEC_ID |
TRACE_ID |
SID |
CLIENT_IP |
CLIENT_PORT |
TENANT_ID |
EFFECTIVE_TENANT_ID |
TENANT_NAME |
USER_ID |
USER_NAME |
USER_CLIENT_IP |
DB_ID |
DB_NAME |
SQL_ID |
QUERY_SQL |
PLAN_ID |
AFFECTED_ROWS |
RETURN_ROWS |
PARTITION_CNT |
RET_CODE |
QC_ID |
DFO_ID |
SQC_ID |
WORKER_ID |
EVENT |
P1TEXT |
P1 |
P2TEXT |
P2 |
P3TEXT |
P3 |
LEVEL |
WAIT_CLASS_ID |
WAIT_CLASS |
STATE |
WAIT_TIME_MICRO |
TOTAL_WAIT_TIME_MICRO |
TOTAL_WAITS |
RPC_COUNT |
PLAN_TYPE |
IS_INNER_SQL |
IS_EXECUTOR_RPC |
IS_HIT_PLAN |
REQUEST_TIME |
ELAPSED_TIME |
NET_TIME |
NET_WAIT_TIME |
QUEUE_TIME |
DECODE_TIME |
GET_PLAN_TIME |
EXECUTE_TIME |
APPLICATION_WAIT_TIME |
CONCURRENCY_WAIT_TIME |
USER_IO_WAIT_TIME |
SCHEDULE_TIME |
ROW_CACHE_HIT |
BLOOM_FILTER_CACHE_HIT |
BLOCK_CACHE_HIT |
DISK_READS |
RETRY_CNT |
TABLE_SCAN |
CONSISTENCY_LEVEL |
MEMSTORE_READ_ROW_COUNT |
SSSTORE_READ_ROW_COUNT |
REQUEST_MEMORY_USED |
EXPECTED_WORKER_COUNT |
USED_WORKER_COUNT |
TX_ID |
REQUEST_TYPE |
IS_BATCHED_MULTI_STMT |
OB_TRACE_INFO |
PLAN_HASH |
10.1.250.160 |
2882 |
2917461 |
33584237 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953195 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
db file data read |
fd |
558 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
409 |
2563 |
11 |
2 |
3 |
0 |
1 |
1 |
1732155386819581 |
8010 |
0 |
0 |
0 |
0 |
0 |
8010 |
0 |
2563 |
2172 |
0 |
0 |
0 |
15 |
38 |
0 |
0 |
-1 |
0 |
16129 |
1282185 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917463 |
33584245 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953197 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
1 |
1 |
2 |
0 |
db file data read |
fd |
22631 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
500 |
5126 |
17 |
1 |
3 |
0 |
1 |
1 |
1732155386857695 |
32746 |
0 |
0 |
0 |
0 |
0 |
32746 |
0 |
5126 |
4858 |
0 |
0 |
0 |
34 |
19 |
0 |
0 |
-1 |
0 |
23 |
1789946 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917464 |
33584259 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953102 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
0 |
db file data read |
fd |
14684 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
7295 |
52569 |
348 |
1 |
3 |
0 |
1 |
1 |
1732155386976696 |
82677 |
0 |
0 |
0 |
0 |
0 |
82677 |
0 |
48983 |
52288 |
0 |
0 |
0 |
282 |
870 |
0 |
0 |
-1 |
0 |
3041 |
1011688 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917465 |
33584268 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221951820 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
5 |
1 |
2 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
1 |
1732155387186624 |
1416 |
0 |
0 |
0 |
0 |
0 |
1416 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
162120 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917466 |
33584269 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953157 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
5 |
2 |
0 |
0 |
default condition wait |
address |
140236298077512 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
297 |
297 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387207641 |
10771 |
0 |
0 |
0 |
0 |
0 |
10771 |
0 |
297 |
0 |
0 |
100 |
0 |
580 |
0 |
0 |
0 |
-1 |
0 |
2979 |
1847841 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917468 |
33584276 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953213 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
7 |
0 |
0 |
0 |
default condition wait |
address |
140238223115592 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
595 |
1251 |
4 |
2 |
3 |
0 |
1 |
1 |
1732155387241460 |
2603 |
0 |
0 |
0 |
0 |
0 |
2603 |
0 |
1251 |
424 |
0 |
0 |
0 |
2 |
4 |
0 |
0 |
-1 |
0 |
650 |
381157 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917469 |
33584277 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953219 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
8 |
0 |
0 |
0 |
db file data read |
fd |
3221 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
322 |
929 |
3 |
1 |
3 |
0 |
1 |
1 |
1732155387267585 |
12621 |
0 |
0 |
0 |
0 |
0 |
12621 |
0 |
929 |
619 |
0 |
200 |
0 |
221 |
3 |
0 |
0 |
-1 |
0 |
3291 |
1588249 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917470 |
33584283 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953216 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
10 |
0 |
0 |
0 |
default condition wait |
address |
140232215426568 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
291 |
291 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387426306 |
35980 |
0 |
0 |
0 |
0 |
0 |
35980 |
0 |
291 |
0 |
0 |
406 |
0 |
152 |
1 |
0 |
0 |
-1 |
0 |
19421 |
3864750 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917471 |
33584285 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953200 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
13 |
0 |
0 |
0 |
default condition wait |
address |
140227221816648 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
254 |
254 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387484236 |
907 |
0 |
0 |
0 |
0 |
0 |
907 |
0 |
254 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
1 |
676083 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917472 |
33584287 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953237 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
15 |
0 |
0 |
0 |
default condition wait |
address |
140220721489224 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
302 |
302 |
1 |
2 |
3 |
0 |
1 |
1 |
1732155387515666 |
1063 |
0 |
0 |
0 |
0 |
0 |
1063 |
0 |
302 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
291000 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917474 |
33584291 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953235 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
15 |
1 |
2 |
0 |
default condition wait |
address |
140232046016008 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
231 |
231 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387544407 |
632 |
0 |
0 |
0 |
0 |
0 |
632 |
0 |
231 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
431667 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917475 |
33584292 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221952931 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
17 |
0 |
0 |
0 |
default condition wait |
address |
140239339627848 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
318 |
654 |
3 |
2 |
3 |
0 |
1 |
1 |
1732155387566967 |
5304 |
0 |
0 |
0 |
0 |
0 |
5304 |
0 |
654 |
304 |
0 |
0 |
0 |
32 |
2 |
0 |
0 |
-1 |
0 |
16472 |
1221313 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917476 |
33584294 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953239 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
17 |
1 |
2 |
0 |
db file data read |
fd |
25840 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
518 |
3340 |
10 |
1 |
3 |
0 |
1 |
1 |
1732155387598500 |
38837 |
0 |
0 |
0 |
0 |
0 |
38837 |
0 |
3312 |
3106 |
0 |
0 |
0 |
18 |
12 |
0 |
0 |
-1 |
0 |
20 |
1683195 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917477 |
33584319 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953243 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
19 |
0 |
0 |
0 |
default condition wait |
address |
140239854622088 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
275 |
275 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387859178 |
11357 |
0 |
0 |
0 |
0 |
0 |
11357 |
0 |
275 |
0 |
0 |
407 |
0 |
125 |
0 |
0 |
0 |
-1 |
0 |
3051 |
815848 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917481 |
33584335 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953263 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
21 |
1 |
2 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
1 |
1732155387997332 |
479 |
0 |
0 |
0 |
0 |
0 |
479 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
162120 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917482 |
33584336 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953266 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
21 |
2 |
0 |
0 |
default condition wait |
address |
140232215426568 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
346 |
346 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388016335 |
890 |
0 |
0 |
0 |
0 |
0 |
890 |
0 |
346 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
742097 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917483 |
33584337 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953265 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
23 |
0 |
0 |
0 |
default condition wait |
address |
140239114573192 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
562 |
800 |
2 |
2 |
3 |
0 |
1 |
1 |
1732155388035828 |
1663 |
0 |
0 |
0 |
0 |
0 |
1663 |
0 |
800 |
0 |
0 |
0 |
0 |
4 |
0 |
0 |
0 |
-1 |
0 |
649 |
280093 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917484 |
33584341 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953260 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
default condition wait |
address |
140234073306504 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
332 |
332 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388061234 |
9579 |
0 |
0 |
0 |
0 |
0 |
9579 |
0 |
332 |
0 |
0 |
485 |
0 |
64 |
0 |
0 |
0 |
-1 |
0 |
3290 |
1522969 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917485 |
33584343 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953270 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
26 |
0 |
0 |
0 |
default condition wait |
address |
140237431043464 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
261 |
344 |
2 |
1 |
3 |
0 |
1 |
1 |
1732155388207060 |
30255 |
0 |
0 |
0 |
0 |
0 |
30255 |
0 |
261 |
83 |
0 |
585 |
0 |
106 |
1 |
0 |
0 |
-1 |
0 |
19913 |
3952174 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917486 |
33584350 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953282 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
29 |
0 |
0 |
0 |
default condition wait |
address |
140224373663048 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
261 |
261 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388379237 |
856 |
0 |
0 |
0 |
0 |
0 |
856 |
0 |
261 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
676083 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917487 |
33584351 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953264 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
31 |
0 |
0 |
0 |
default condition wait |
address |
140233273558344 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
387 |
410 |
2 |
2 |
3 |
0 |
1 |
1 |
1732155388400287 |
932 |
0 |
0 |
0 |
0 |
0 |
932 |
0 |
410 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
291000 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.160 |
2882 |
2917488 |
33584352 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221953279 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
31 |
1 |
2 |
0 |
default condition wait |
address |
140238043215368 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
266 |
266 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388426465 |
657 |
0 |
0 |
0 |
0 |
0 |
657 |
0 |
266 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
431667 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516530 |
47698411 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222246555 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
0 |
das wait remote response |
|
140583870100256 |
|
0 |
|
0 |
0 |
107 |
NETWORK |
WAITED KNOWN TIME |
24079 |
67628 |
65 |
2 |
3 |
0 |
1 |
1 |
1732155386846133 |
100818 |
0 |
0 |
0 |
0 |
0 |
100818 |
0 |
20295 |
20295 |
0 |
0 |
0 |
205 |
63 |
0 |
0 |
-1 |
0 |
470 |
4723754 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516531 |
47698426 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222247113 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
5 |
0 |
0 |
0 |
db file data read |
fd |
985 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
417 |
1217 |
5 |
2 |
3 |
0 |
1 |
1 |
1732155387146102 |
8780 |
0 |
0 |
0 |
0 |
0 |
8780 |
0 |
1217 |
817 |
0 |
0 |
0 |
13 |
3 |
0 |
0 |
-1 |
0 |
4433 |
3149296 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516532 |
47698427 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222247626 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
5 |
1 |
1 |
0 |
db file data read |
fd |
22709 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
406 |
720 |
2 |
1 |
3 |
0 |
1 |
1 |
1732155387170273 |
2048 |
0 |
0 |
0 |
0 |
0 |
2048 |
0 |
720 |
406 |
0 |
0 |
0 |
4 |
1 |
0 |
0 |
-1 |
0 |
20 |
424238 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516537 |
47698442 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222246917 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
15 |
1 |
1 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
1 |
1732155387527680 |
245 |
0 |
0 |
0 |
0 |
0 |
245 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
407336 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516538 |
47698446 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222246218 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
17 |
1 |
1 |
0 |
das wait remote response |
|
140585309307984 |
|
0 |
|
0 |
0 |
107 |
NETWORK |
WAITED KNOWN TIME |
23927 |
58307 |
54 |
2 |
3 |
0 |
1 |
1 |
1732155387583180 |
95463 |
0 |
0 |
0 |
0 |
0 |
95463 |
0 |
17138 |
17138 |
0 |
0 |
0 |
197 |
52 |
0 |
0 |
-1 |
0 |
560 |
4861420 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516539 |
47698452 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222243428 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
21 |
0 |
0 |
0 |
default condition wait |
address |
140584928552264 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
224 |
284 |
2 |
2 |
3 |
0 |
1 |
1 |
1732155387955121 |
9733 |
0 |
0 |
0 |
0 |
0 |
9733 |
0 |
284 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
5750 |
1193424 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516540 |
47698456 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222247278 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
21 |
1 |
1 |
0 |
default condition wait |
address |
140585240032648 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
421 |
421 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387977716 |
990 |
0 |
0 |
0 |
0 |
0 |
990 |
0 |
421 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
-1 |
0 |
2 |
310547 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516541 |
47698482 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222247643 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
31 |
1 |
1 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
1 |
1732155388410635 |
287 |
0 |
0 |
0 |
0 |
0 |
287 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
407336 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154276 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543236 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
db file data read |
fd |
15226 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
319 |
319 |
1 |
0 |
1 |
1 |
1 |
1 |
1732155379771417 |
2491 |
914 |
3 |
28 |
998 |
0 |
1370 |
0 |
319 |
319 |
0 |
0 |
0 |
1 |
1 |
0 |
0 |
3 |
0 |
255 |
974473 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154277 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543293 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155379779344 |
1282 |
990 |
4 |
45 |
869 |
0 |
260 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
5 |
253833 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154278 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543298 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
db file data read |
fd |
14705 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
222 |
222 |
1 |
0 |
1 |
1 |
1 |
1 |
1732155379782023 |
2318 |
938 |
5 |
25 |
981 |
0 |
1228 |
0 |
222 |
222 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
3 |
0 |
255 |
974473 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154279 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221540115 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
db file data read |
fd |
14498 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
158 |
158 |
1 |
0 |
1 |
1 |
1 |
1 |
1732155379789544 |
1354 |
964 |
3 |
20 |
842 |
0 |
424 |
0 |
158 |
158 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
3 |
0 |
1 |
311177 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154280 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543294 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155379792260 |
1391 |
950 |
2 |
56 |
969 |
0 |
293 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154281 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543305 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155379795037 |
1125 |
924 |
3 |
43 |
829 |
0 |
200 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154282 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543303 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155379797446 |
1262 |
935 |
3 |
20 |
883 |
0 |
255 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154287 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543335 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380134824 |
1159 |
925 |
2 |
22 |
842 |
0 |
241 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154307 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543375 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380720944 |
1328 |
944 |
3 |
15 |
987 |
0 |
259 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154308 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221541231 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380723612 |
1160 |
938 |
14 |
20 |
843 |
0 |
225 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
1 |
245897 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154310 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543383 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380919711 |
1386 |
942 |
4 |
19 |
924 |
0 |
353 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
11 |
253833 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154311 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543334 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
db file data read |
fd |
20272 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
224 |
224 |
1 |
0 |
1 |
1 |
1 |
1 |
1732155380922746 |
1652 |
939 |
3 |
30 |
970 |
0 |
574 |
0 |
224 |
224 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
3 |
0 |
1 |
311177 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154312 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543386 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380925802 |
1701 |
916 |
3 |
22 |
856 |
0 |
754 |
0 |
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
0 |
3 |
0 |
212 |
647049 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154313 |
-1 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543333 |
0.0.0.0 |
0 |
1006 |
1006 |
|
200001 |
|
0.0.0.0 |
201001 |
|
3DDD42AC30ACCDF75EAC13F6E4423543 |
|
403 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
|
|
0 |
|
0 |
|
0 |
0 |
100 |
OTHER |
MAX_WAIT TIME ZERO |
0 |
0 |
0 |
0 |
1 |
1 |
1 |
1 |
1732155380931422 |
1325 |
943 |
4 |
23 |
903 |
0 |
284 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
3 |
253833 |
0 |
0 |
0 |
3 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154452 |
72850875 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221541581 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
1 |
1 |
0 |
0 |
das wait remote response |
|
139721402819664 |
|
0 |
|
0 |
0 |
107 |
NETWORK |
WAITED KNOWN TIME |
19000 |
38542 |
12 |
3 |
3 |
0 |
1 |
1 |
1732155386849860 |
58460 |
0 |
0 |
0 |
0 |
0 |
58460 |
0 |
2314 |
2056 |
0 |
0 |
0 |
18 |
9 |
0 |
0 |
-1 |
0 |
11 |
4328654 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154456 |
72850892 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543746 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
4 |
0 |
0 |
0 |
db file data read |
fd |
12378 |
offset |
0 |
size |
0 |
0 |
108 |
USER_IO |
WAITED SHORT TIME |
432 |
900 |
3 |
1 |
3 |
0 |
1 |
1 |
1732155387075725 |
1256 |
0 |
0 |
0 |
0 |
0 |
1256 |
0 |
900 |
681 |
0 |
0 |
0 |
0 |
2 |
0 |
0 |
-1 |
0 |
2 |
192698 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154458 |
72850913 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543621 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
5 |
1 |
0 |
0 |
default condition wait |
address |
139727765407048 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
361 |
361 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387178648 |
1106 |
0 |
0 |
0 |
0 |
0 |
1106 |
0 |
361 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
176514 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154460 |
72850932 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543765 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
9 |
0 |
0 |
0 |
default condition wait |
address |
139738015937928 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
304 |
304 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387302389 |
536 |
0 |
0 |
0 |
0 |
0 |
536 |
0 |
304 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
103631 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154472 |
72850973 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543775 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
15 |
1 |
0 |
0 |
default condition wait |
address |
139735704380744 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
213 |
213 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387540502 |
602 |
0 |
0 |
0 |
0 |
0 |
602 |
0 |
213 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
431667 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154473 |
72850985 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543783 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
17 |
1 |
0 |
0 |
das wait remote response |
|
139728933921872 |
|
0 |
|
0 |
0 |
107 |
NETWORK |
WAITED KNOWN TIME |
24733 |
42364 |
4 |
3 |
3 |
0 |
1 |
1 |
1732155387591434 |
66009 |
0 |
0 |
0 |
0 |
0 |
66009 |
0 |
391 |
206 |
0 |
0 |
0 |
7 |
1 |
0 |
0 |
-1 |
0 |
2 |
4280643 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154474 |
72850995 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543785 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
18 |
0 |
0 |
0 |
default condition wait |
address |
139732928312712 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
266 |
266 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387716066 |
471 |
0 |
0 |
0 |
0 |
0 |
471 |
0 |
266 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
103624 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154476 |
72851007 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543795 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
20 |
0 |
0 |
0 |
default condition wait |
address |
139737775773064 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
221 |
221 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387887630 |
497 |
0 |
0 |
0 |
0 |
0 |
497 |
0 |
221 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
103624 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154480 |
72851020 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543801 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
21 |
1 |
0 |
0 |
default condition wait |
address |
139736218568008 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
331 |
331 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155387988680 |
690 |
0 |
0 |
0 |
0 |
0 |
690 |
0 |
331 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
176515 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154481 |
72851028 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543817 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
25 |
0 |
0 |
0 |
default condition wait |
address |
139728870737224 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
283 |
283 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388086347 |
539 |
0 |
0 |
0 |
0 |
0 |
539 |
0 |
283 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
103631 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154484 |
72851054 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543827 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
27 |
0 |
0 |
0 |
default condition wait |
address |
139731970332040 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
232 |
232 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388255295 |
437 |
0 |
0 |
0 |
0 |
0 |
437 |
0 |
232 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
2171624 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.161 |
2882 |
16154486 |
72851067 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3221543843 |
10.1.14.157 |
63471 |
1006 |
1006 |
|
200001 |
|
10.1.14.157 |
500003 |
|
4E47588DD2D31493323CC778BAB63C22 |
|
11150 |
0 |
0 |
0 |
0 |
31 |
1 |
0 |
0 |
default condition wait |
address |
139727854708040 |
|
0 |
|
0 |
0 |
104 |
CONCURRENCY |
WAITED SHORT TIME |
246 |
246 |
1 |
1 |
3 |
0 |
1 |
1 |
1732155388419214 |
484 |
0 |
0 |
0 |
0 |
0 |
484 |
0 |
246 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
-1 |
0 |
0 |
431667 |
0 |
0 |
0 |
4 |
0 |
None |
0 |
10.1.250.157 |
2882 |
4516542 |
47697953 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
3222247516 |
10.1.14.157 |
63471 |
1006 |
1006 |
neo_dev |
200001 |
root |
10.1.14.157 |
500003 |
small_oa_169 |
4E47588DD2D31493323CC778BAB63C22 |
# 销售统计 SELECT t.in_user_id, t.in_user_name, concat(t.in_user_id) AS sort_value, sum(CASE WHEN t.data_mark = 'A' THEN t.counts ELSE 0 END) AS counts, sum(CASE WHEN t.data_mark = 'A' THEN t.price ELSE 0 END) AS price, sum(CASE WHEN t.data_mark = 'A' THEN t.sell_price ELSE 0 END) AS sell_price, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_price ELSE 0 END) AS avg_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gift_price ELSE 0 END) AS gift_price, sum(CASE WHEN t.data_mark = 'A' THEN t.discount_price ELSE 0 END) AS discount_price, sum(CASE WHEN t.data_mark = 'A' THEN t.point_price ELSE 0 END) AS point_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_price ELSE 0 END) AS statistics_price, sum(CASE WHEN t.data_mark = 'A' THEN t.self_modify_price ELSE 0 END) AS self_modify_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.in_price ELSE 0 END) AS in_price, sum(CASE WHEN t.data_mark = 'A' THEN t.gross_profit ELSE 0 END) AS gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_price ELSE 0 END) AS examine_price, sum(CASE WHEN t.data_mark = 'A' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit, sum(CASE WHEN t.data_mark = 'A' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit, sum(CASE WHEN t.data_mark = 'B' THEN t.counts ELSE 0 END) AS counts_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.price ELSE 0 END) AS price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.sell_price ELSE 0 END) AS sell_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_price ELSE 0 END) AS avg_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gift_price ELSE 0 END) AS gift_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.discount_price ELSE 0 END) AS discount_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.point_price ELSE 0 END) AS point_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_price ELSE 0 END) AS statistics_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.self_modify_price ELSE 0 END) AS self_modify_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_in_price ELSE 0 END) AS statistics_in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.statistics_gross_profit ELSE 0 END) AS statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.in_price ELSE 0 END) AS in_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.gross_profit ELSE 0 END) AS gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_statistics_gross_profit ELSE 0 END) AS avg_statistics_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_price ELSE 0 END) AS examine_price_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.examine_gross_profit ELSE 0 END) AS examine_gross_profit_chain, sum(CASE WHEN t.data_mark = 'B' THEN t.avg_examine_gross_profit ELSE 0 END) AS avg_examine_gross_profit_chain FROM (SELECT *, 'A' AS data_mark FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price FROM t_product_stock_detail t1 LEFT JOIN t_order_detail t2 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id AND t17.status = 3 WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t16.is_delete = 0 AND t2.is_mobile = TRUE AND t17.type IN (2, 3) AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id) SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id AND t6.product_stock_type != 3 AND t6.is_delete = 0 LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN adjustPriceTemp t16 ON t16.mkc_id = t1.mkc_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t7.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t17.status = 3 AND t17.type IN (2, 3) AND t16.is_adjust_after_trade = true AND t17.handle_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = FALSE AND t3.order_complete_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name UNION ALL SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count FROM t_return_detail WHERE is_delete = 0 AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6 ON t2.id = t6.order_detail_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t2.is_mobile = FALSE AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10 WHERE is_mobile IS NOT NULL AND area_id IS NOT NULL AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName UNION ALL SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail a INNER JOIN t_operator_business b ON a.id = b.order_detail_id INNER JOIN t_order_detail t2 ON a.detail_parent_id = t2.id LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id) ON a.order_id = c.order_id LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND c.order_complete_time <= b.return_time AND b.`status` = 2 AND b.is_delete = 0 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND b.version = 0 AND b.return_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t2.id = t6.order_detail_id AND t6.mkc_id IS NULL LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type = 8 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 statistics_in_price, 0 in_price, 0 - (t6.return_price * t6.return_count) statistics_gross_profit, 0 - (t6.return_price * t6.return_count) gross_profit, 0 examine_price, 0 - (t6.return_price * t6.return_count) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '价格保障' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 - t6.return_price * t6.return_count actualPaymentPrice, 0 - t6.return_price * t6.return_count statistics_price, 0 self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t6.mkc_id = t1.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type = 8 AND t7.check2_time BETWEEN '2024-11-01 00:00:00' AND '2024-11-18 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) ORDER BY date DESC, orderDetailId DESC) t LEFT JOIN t_category category ON t.cid = category.id LEFT JOIN t_depart_info t8 ON t.area_id = t8.id GROUP BY t.in_user_id, t.in_user_name) a UNION SELECT *, 'B' AS data_mark FROM (SELECT t.in_user_id, t.in_user_name, IFNULL(sum(t.count), 0) counts, IFNULL(sum(t.price), 0) price, IFNULL(sum(t.sell_price), 0) sell_price, ROUND(sum(t.price) / sum(t.count), 2) avg_price, IFNULL(SUM(t.gift_price), 0) gift_price, IFNULL(sum(t.discount_price), 0) discount_price, IFNULL(sum(t.point_price), 0) point_price, IFNULL(sum(t.self_modify_price), 0) self_modify_price, sum(t.actualPaymentPrice) statistics_price, sum(IFNULL(t.statistics_in_price, 0)) statistics_in_price, sum(t.statistics_gross_profit) statistics_gross_profit, sum(IFNULL(t.in_price, 0)) in_price, sum(t.gross_profit) gross_profit, ROUND(sum(t.statistics_gross_profit) / sum(t.count), 2) avg_statistics_gross_profit, SUM(IFNULL(t.examine_price, 0)) examine_price, SUM(t.examine_gross_profit) examine_gross_profit, ROUND(sum(t.examine_gross_profit) / sum(t.count), 2) avg_examine_gross_profit FROM (WITH adjustPriceTemp AS (SELECT t1.mkc_id AS mkc_id, sum(if(t17.type = 3, t16.adjust_price, 0.00)) AS self_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = false, t16.adjust_price, 0.00)) AS before_in_source_modify_price, sum(if(t17.type = 2 AND t16.is_adjust_after_trade = true, t16.adjust_price, 0.00)) AS after_in_source_modify_price, sum(if(t17.type = 2, t16.adjust_price, 0.00)) AS in_source_modify_price FROM t_product_stock_detail t1 LEFT JOIN t_order_detail t2 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id AND t17.status = 3 WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t16.is_delete = 0 AND t2.is_mobile = TRUE AND t17.type IN (2, 3) AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t1.mkc_id) SELECT t2.id AS orderDetailId, 0 - (IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0)) statistics_in_price, 0 - t1.inprice in_price, 0 - t6.return_price + IFNULL(t1.inprice, 0) - IFNULL(t16.self_modify_price, 0.00) - IFNULL(t16.in_source_modify_price, 0.00) + IFNULL(t1.transfer_price, 0) statistics_gross_profit, 0 - t6.return_price + IFNULL(t1.inprice, 0) gross_profit, 0 - t1.examine_price examine_price, 0 - (t6.return_price - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei i_mei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '-1' AS count, 0 - t2.price price, 0 - t2.price price2, 0 - t2.sell_price sell_price, 0 - t2.gift_price gift_price, 0 - t2.discount_price discount_price, 0 - t2.point_price point_price, 0 - t6.return_price statistics_price, 0 - t6.return_price actualPaymentPrice, 0 - IFNULL(t16.self_modify_price, 0.00) self_modify_price, 0 - IFNULL(t16.after_in_source_modify_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid AS product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) AS customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_return_detail t6 ON t1.mkc_id = t6.mkc_id AND t6.product_stock_type != 3 AND t6.is_delete = 0 LEFT JOIN t_return t7 ON t6.return_id = t7.id AND t7.is_delete = 0 LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN adjustPriceTemp t16 ON t16.mkc_id = t1.mkc_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t7.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, t1.statistics_price statistics_in_price, t1.inprice in_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.statistics_price, 0)) statistics_gross_profit, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.inprice, 0)) gross_profit, t1.examine_price examine_price, (t2.statictisc_price + IFNULL(t2.gift_price, 0) - IFNULL(t1.examine_price, 0)) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 i_mei2, t1.imei_3 i_mei3, t1.imei_4 i_mei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, '1' AS count, t2.price price, t2.price price2, t2.sell_price sell_price, t2.gift_price gift_price, t2.discount_price discount_price, t2.point_price point_price, t2.statictisc_price statistics_price, (t2.price - t2.discount_price - t2.point_price) actualPaymentPrice, t1.modify_price self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT t2.id AS orderDetailId, 0 - t16.adjust_price statistics_in_price, 0 in_price, t16.adjust_price statistics_gross_profit, 0 gross_profit, 0 examine_price, 0 examine_gross_profit, t2.is_mobile is_mobile, t17.handle_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成价保' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, NULL insourceId2, t1.imei imei, t1.imei_2 imei2, t1.imei_3 imei3, t1.imei_4 imei4, t1.mkc_id, t1.instock_time in_stock_time, t1.invoice_type invoice_flag, 0 AS count, 0 price, 0 price2, 0 sell_price, 0 gift_price, 0 discount_price, 0 point_price, 0 statistics_price, 0 actualPaymentPrice, if(t17.type = 3, t16.adjust_price, 0.00) self_modify_price, if(t17.type = 2, t16.adjust_price, 0.00) in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1 AND t2.product_stock_type != 3) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t1.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id LEFT JOIN t_product_adjust_price_detail t16 ON t16.mkc_id = t1.mkc_id LEFT JOIN t_product_adjust_price t17 ON t17.id = t16.adjust_price_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = TRUE AND t2.product_stock_type != 3 AND t17.status = 3 AND t17.type IN (2, 3) AND t16.is_adjust_after_trade = true AND t17.handle_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) UNION ALL SELECT max(t10.id) AS orderDetailId, SUM(t10.statistics_in_price) statistics_in_price, SUM(t10.in_price) in_price, SUM(t10.statistics_gross_profit) statistics_gross_profit, sum(t10.gross_profit) gross_profit, SUM(t10.examine_price) examine_price, SUM(t10.examine_gross_profit) examine_gross_profit, t10.is_mobile is_mobile, t10.date date, t10.order_complete_time, t10.area_id area_id, t10.accountingBodyId, t10.accountingBodyName, t10.order_id order_id, t10.business_type business_type, t10.order_type order_type, t10.user_id user_id, t10.ppid sku_id, t10.detail_type, t10.insource_id insource_id, t10.inSourceId2 inSourceId2, t10.i_mei_or_barcode i_mei, t10.imei2 imei2, t10.imei3 imei3, t10.imei4 imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, SUM(t10.count) count, SUM(t10.price) price, SUM(t10.price) price2, SUM(t10.sell_price) sell_price, SUM(t10.gift_price) gift_price, SUM(t10.discount_price) discount_price, SUM(t10.point_price) point_price, SUM(t10.statistics_price) statistics_price, SUM(t10.actualPaymentPrice) actualPaymentPrice, SUM(t10.self_modify_price) self_modify_price, 0 in_source_modify_price, t10.in_user_id in_user_id, t10.in_user_name in_user_name, t10.product_color product_color, t10.product_id product_id, t10.cid cid, t10.brand_id brand_id, t10.product_name product_name, t10.customer_type customer_type, t10.order_customer_type order_customer_type, t10.customer_name customer_name, t10.customer_phone customer_phone, t10.contract_name contract_name, t10.contract_mobile contract_mobile, t10.trader_name trader_name, t10.comment comment, t10.product_comment product_comment, t10.label_id label_id, t10.label_name label_name, t10.detail_parent_id, t10.serial_number_mark_name serial_number_mark_name, t10.serial_number_mark_color serial_number_mark_color, t10.serial_number_mark serial_number_mark, t10.aux_sale_man_names, t10.sample_product FROM (SELECT t2.id, SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, (((t2.statictisc_price + IFNULL(t2.gift_price, 0)) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t3.order_complete_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '销售' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, if(t2.virtual_product = 0, sum(t1.counts), t2.counts) count, t2.price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) price, t2.sell_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) sell_price, t2.gift_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) gift_price, t2.discount_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) discount_price, t2.point_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) point_price, t2.statictisc_price * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) statistics_price, (t2.price - t2.discount_price - t2.point_price) * if(t2.virtual_product = 0, sum(t1.counts), t2.counts) actualPaymentPrice, SUM(IFNULL(t1.modify_price * t1.counts, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state IN (3, 9) AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t2.is_mobile = FALSE AND t3.order_complete_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t3.trader_name, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name UNION ALL SELECT t2.id, 0 - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) statistics_in_price, 0 - SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)) in_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - SUM(IFNULL(IFNULL(t1.statistics_price * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0))) statistics_gross_profit, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.inprice * t1.counts, if(null = 1 AND t2.jiuxun_service_flag = 1, t2.jiuxun_service_cost_price, t2.in_price)), 0)))) gross_profit, 0 - SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)) examine_price, 0 - ((t6.return_price * t6.return_count * count(t2.id)) - (SUM(IFNULL(IFNULL(t1.examine_price * t1.counts, t2.examine_price), 0)))) examine_gross_profit, t2.is_mobile is_mobile, t7.check2_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, ifnull(t3.order_parent_id, t3.order_id) order_id, '退款' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid ppid, t2.detail_type, IFNULL(t1.insource_id, vpcc.in_source_id) insource_id, t16.channel inSourceId2, t4.bar_code i_mei_or_barcode, '' imei2, '' imei3, '' imei4, NULL AS mkc_id, NULL in_stock_time, NULL invoice_flag, 0 - count(t2.id) * t6.return_count count, 0 - (t2.price * count(t2.id)) * t6.return_count price, 0 - (t2.sell_price * count(t2.id)) * t6.return_count sell_price, 0 - (t2.gift_price * count(t2.id)) * t6.return_count gift_price, 0 - (t2.discount_price * count(t2.id)) * t6.return_count discount_price, 0 - (t2.point_price * count(t2.id)) * t6.return_count point_price, 0 - (t6.return_price * count(t2.id)) * t6.return_count actualPaymentPrice, 0 - (t6.return_price * count(t2.id)) * t6.return_count statistics_price, 0 - SUM(IFNULL(t1.modify_price, 0)) self_modify_price, 0 in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t7.comment comment, t2.comment product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product, t3.invoice_status FROM t_order_detail t2 LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN (SELECT order_detail_id, avg(return_price) return_price, is_delete, return_id, return_count FROM t_return_detail WHERE is_delete = 0 AND order_detail_type = 1 GROUP BY order_detail_id, return_id, is_delete, return_count) t6 ON t2.id = t6.order_detail_id LEFT JOIN t_return t7 ON t6.return_id = t7.id LEFT JOIN t_depart_info t8 ON t3.area_id = t8.id LEFT JOIN t_operator_business t16 ON (t2.id = t16.order_detail_id) LEFT JOIN t_after_services_buy t17 ON t2.id = t17.bind_order_detail_id AND t17.is_delete = 0 LEFT JOIN t_special_user t11 ON t11.user_id = t3.user_id LEFT JOIN t_product_label pl ON t4.productid = pl.product_id AND pl.is_delete = 0 LEFT JOIN t_label la ON pl.label_id = la.id AND la.is_delete = 0 LEFT JOIN t_sys_config sysc ON t1.serial_number_mark = sysc.id AND sysc.is_delete = 0 LEFT JOIN t_order_detail_extend vpcc ON t2.id = vpcc.id LEFT JOIN t_finance_accounting_body t40 ON t40.id = t8.accounting_body_id LEFT JOIN t_order_extend t36 ON t3.order_id = t36.order_id WHERE t3.order_state = 9 AND t2.is_delete = 0 AND t3.is_delete = 0 AND t5.is_delete = 0 AND t6.is_delete = 0 AND t7.is_delete = 0 AND t7.return_type NOT IN (7, 8) AND t2.is_mobile = FALSE AND t7.check2_time BETWEEN '2024-10-14 00:00:00' AND '2024-10-31 23:59:59' AND t3.area_id IN (216) AND t3.area_id IN (216) AND t2.product_stock_type IN (0, 1, 2, 6) GROUP BY t2.id, t1.insource_id, t4.bar_code, t4.product_color, t4.cid, t4.brand_id, t4.product_name, t6.return_price, t6.return_count, t7.check2_time, t7.check2_user_name, t7.comment, la.id, la.label_name, sysc.name, sysc.value, sysc.id, t36.aux_sale_man_names, t1.sample_product, t40.id, t40.name) t10 WHERE is_mobile IS NOT NULL AND area_id IS NOT NULL AND order_id IS NOT NULL GROUP BY t10.business_type, t10.is_mobile, t10.date, t10.order_complete_time, t10.area_id, t10.order_id, t10.order_type, t10.user_id, t10.ppid, t10.insource_id, t10.i_mei_or_barcode, t10.in_user_id, t10.in_user_name, t10.product_color, t10.product_id, t10.cid, t10.brand_id, t10.product_name, t10.customer_type, t10.order_customer_type, t10.customer_name, t10.customer_phone, t10.contract_name, t10.contract_mobile, t10.trader_name, t10.inSourceId2, t10.detail_type, t10.comment, t10.product_comment, t10.label_id, t10.label_name, t10.detail_parent_id, t10.imei2, t10.imei3, t10.imei4, t10.mkc_id, t10.in_stock_time, t10.invoice_flag, t10.serial_number_mark_name, t10.serial_number_mark_color, t10.serial_number_mark, t10.aux_sale_man_names, t10.sample_product, t10.accountingBodyId, t10.accountingBodyName UNION ALL SELECT a.id AS orderDetailId, 0 AS statistics_in_price, 0 AS in_price, 0 - IFNULL(b.deduction_price, 0) AS statistics_gross_profit, 0 - IFNULL(b.deduction_price, 0) AS gross_profit, 0 AS examine_price, 0 - IFNULL(b.deduction_price, 0) AS examine_gross_profit, t2.is_mobile is_mobile, b.return_time date, t3.order_complete_time, t3.area_id area_id, t40.id AS accountingBodyId, t40.name AS accountingBodyName, CASE WHEN t3.order_state = 9 THEN ifnull(t3.order_parent_id, t3.order_id) ELSE t3.order_id END order_id, '交易完成返销' AS business_type, t3.order_type order_type, t3.user_id user_id, t2.ppid sku_id, t2.detail_type, t1.insource_id insource_id, t16.channel inSourceId2, if(t4.is_mobile = true, t1.imei, t4.bar_code) imei, if(t4.is_mobile = true, t1.imei_2, '') imei2, if(t4.is_mobile = true, t1.imei_3, '') imei3, if(t4.is_mobile = true, t1.imei_4, '') imei4, if(t4.is_mobile = true, t1.mkc_id, NULL) mkc_id, NULL in_stock_time, NULL invoice_flag, 0 AS count, 0 AS price, t2.price AS price2, 0 AS sell_price, 0 AS gift_price, 0 AS discount_price, 0 AS point_price, 0 AS statistics_price, 0 - IFNULL(b.deduction_price, 0) AS actualPaymentPrice, 0 AS self_modify_price, 0 AS in_source_modify_price, t2.in_user_id in_user_id, t2.in_user_name in_user_name, t4.product_color product_color, t4.productid product_id, t4.cid cid, t4.brand_id brand_id, t4.product_name product_name, t5.user_type customer_type, t3.customer_type AS order_customer_type, if(t3.order_type = 3 OR t3.order_type = 4, t11.special_username, t5.real_name) customer_name, t5.user_mobile AS customer_phone, t3.contract_name AS contract_name, t3.contract_mobile AS contract_mobile, t3.trader_name trader_name, t3.COMMENT COMMENT, t2.COMMENT product_comment, la.id AS label_id, la.label_name label_name, t2.detail_parent_id, sysc.name serial_number_mark_name, sysc.value serial_number_mark_color, sysc.id serial_number_mark, t36.aux_sale_man_names, t1.sample_product FROM t_order_detail a INNER JOIN t_operator_business b ON a.id = b.order_detail_id INNER JOIN t_order_detail t2 ON a.detail_parent_id = t2.id LEFT JOIN t_order c FORCE INDEX (torder_ix_order_id) ON a.order_id = c.order_id LEFT JOIN t_product_stock_detail t1 ON (t1.order_detail_id = t2.id AND t1.order_detail_type = 1) LEFT JOIN t_order t3 ON t2.order_id = t3.order_id LEFT JOIN t_product_info t4 ON t2.ppid = t4.ppriceid LEFT JOIN t_user t5 ON t5.id = t3.user_id LEFT JOIN t_depart_info t8 ON t3.area_ |
11150 |
0 |
3 |
570 |
0 |
0 |
0 |
0 |
0 |
das wait remote response |
|
140567854264896 |
|
0 |
|
0 |
0 |
107 |
NETWORK |
WAITED KNOWN TIME |
23240 |
1442975 |
1061 |
87 |
3 |
0 |
0 |
0 |
1732155379220914 |
9207211 |
0 |
0 |
11 |
0 |
7559793 |
1647327 |
0 |
24065 |
24290 |
0 |
76 |
0 |
1205 |
79 |
0 |
1 |
3 |
0 |
80564 |
1699162073 |
0 |
0 |
0 |
2 |
0 |
None |
2064925276529903675 |
10.1.250.157 |
2882 |
4516491 |
47697999 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (16)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1456 |
1456 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380133760 |
1636 |
0 |
0 |
0 |
0 |
98 |
1538 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516487 |
47697975 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (17)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1675 |
1675 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379788490 |
1795 |
0 |
0 |
0 |
0 |
62 |
1733 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516486 |
47697974 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (19)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
5910 |
5910 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379780998 |
6117 |
0 |
0 |
0 |
0 |
59 |
6058 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
476174 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516497 |
47698038 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (25)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
4159 |
4159 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380924804 |
4327 |
0 |
0 |
0 |
0 |
57 |
4270 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
345102 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516484 |
47697972 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (35)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
6129 |
6129 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379770365 |
6394 |
0 |
0 |
0 |
0 |
94 |
6300 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
476174 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516485 |
47697973 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (36)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1641 |
1641 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379778232 |
1794 |
0 |
0 |
0 |
0 |
85 |
1709 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516488 |
47697976 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (37)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1700 |
1700 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379791238 |
1803 |
0 |
0 |
0 |
0 |
51 |
1752 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516494 |
47698031 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (45)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1426 |
1426 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380722601 |
1529 |
0 |
0 |
0 |
0 |
51 |
1478 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516489 |
47697977 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (46)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1364 |
1364 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379794034 |
1471 |
0 |
0 |
0 |
0 |
52 |
1419 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516493 |
47698030 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (49)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1603 |
1603 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380719837 |
1813 |
0 |
0 |
0 |
0 |
100 |
1713 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516490 |
47697978 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (50)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1567 |
1567 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155379796440 |
1676 |
0 |
0 |
0 |
0 |
51 |
1625 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516498 |
47698039 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (51)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1609 |
1609 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380930401 |
1721 |
0 |
0 |
0 |
0 |
54 |
1667 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516495 |
47698036 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (54)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1780 |
1780 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380918595 |
2020 |
0 |
0 |
0 |
0 |
111 |
1909 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
10.1.250.157 |
2882 |
4516496 |
47698037 |
YB420A01FA9D-000626C2C73BF28D-0-0 |
1 |
0.0.0.0 |
0 |
1006 |
1006 |
sys |
200001 |
root |
0.0.0.0 |
201001 |
oceanbase |
3DDD42AC30ACCDF75EAC13F6E4423543 |
SELECT col_stat.tenant_id as tenant_id, col_stat.table_id as table_id, col_stat.partition_id as partition_id, col_stat.column_id as column_id, col_stat.object_type as stat_level, col_stat.distinct_cnt as num_distinct, col_stat.null_cnt as num_null,col_stat.b_max_value as b_max_value, col_stat.b_min_value as b_min_value,col_stat.avg_len as avg_len,col_stat.distinct_cnt_synopsis as distinct_cnt_synopsis,col_stat.distinct_cnt_synopsis_size as distinct_cnt_synopsis_size,col_stat.histogram_type as histogram_type,col_stat.sample_size as sample_size,col_stat.bucket_cnt as bucket_cnt,col_stat.density as density,col_stat.last_analyzed as last_analyzed,col_stat.spare1 as compress_type,col_stat.cg_macro_blk_cnt as cg_macro_blk_cnt,col_stat.cg_micro_blk_cnt as cg_micro_blk_cnt,hist_stat.endpoint_num as endpoint_num, hist_stat.b_endpoint_value as b_endpoint_value,hist_stat.endpoint_repeat_cnt as endpoint_repeat_cnt FROM __all_column_stat col_stat LEFT JOIN __all_histogram_stat hist_stat ON col_stat.tenant_id = hist_stat.tenant_id AND col_stat.table_id = hist_stat.table_id AND col_stat.partition_id = hist_stat.partition_id AND col_stat.column_id = hist_stat.column_id WHERE (col_stat.TENANT_ID=0 AND col_stat.TABLE_ID=503275 AND col_stat.PARTITION_ID IN (-1) AND col_stat.COLUMN_ID IN (65)) ORDER BY tenant_id, table_id, partition_id, column_id, endpoint_num; |
657 |
0 |
1 |
2 |
0 |
0 |
0 |
0 |
0 |
sync rpc |
pcode |
1308 |
size |
2943 |
|
0 |
0 |
107 |
NETWORK |
WAITED SHORT TIME |
1945 |
1945 |
1 |
1 |
2 |
1 |
0 |
1 |
1732155380921712 |
2081 |
0 |
0 |
0 |
0 |
63 |
2018 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
3 |
0 |
0 |
148494 |
0 |
0 |
0 |
1 |
0 |
None |
4378009672889366893 |
SQL_PLAN_MONITOR DFO 级调度时序汇总
EST_ROWS |
PLAN_DEPTH |
PLAN_LINE_ID |
PLAN_OPERATION |
PARALLEL |
MIN_FIRST_REFRESH_TIME |
MAX_LAST_REFRESH_TIME |
MIN_FIRST_CHANGE_TIME |
MAX_LAST_CHANGE_TIME |
MIN_FIRST_REFRESH_TS |
MAX_LAST_REFRESH_TS |
MIN_FIRST_CHANGE_TS |
MAX_LAST_CHANGE_TS |
AVG_REFRESH_TIME |
MAX_REFRESH_TIME |
MIN_REFRESH_TIME |
AVG_CHANGE_TIME |
MAX_CHANGE_TIME |
MIN_CHANGE_TIME |
TOTAL_OUTPUT_ROWS |
SKEWNESS |
TOTAL_RESCAN_TIMES |
OTHERSTAT_1_ID |
SUM_STAT_1 |
MAX_STAT_1 |
MIN_STAT_1 |
AVG_STAT_1 |
OTHERSTAT_2_ID |
SUM_STAT_2 |
MAX_STAT_2 |
MIN_STAT_2 |
AVG_STAT_2 |
OTHERSTAT_3_ID |
SUM_STAT_3 |
MAX_STAT_3 |
MIN_STAT_3 |
AVG_STAT_3 |
OTHERSTAT_4_ID |
SUM_STAT_4 |
MAX_STAT_4 |
MIN_STAT_4 |
AVG_STAT_4 |
OTHERSTAT_5_ID |
SUM_STAT_5 |
MAX_STAT_5 |
MIN_STAT_5 |
AVG_STAT_5 |
OTHERSTAT_6_ID |
SUM_STAT_6 |
MAX_STAT_6 |
MIN_STAT_6 |
AVG_STAT_6 |
MY_DB_TIME |
MY_CPU_TIME |
MY_IO_TIME |
10.0000 |
0 |
0 |
PHY_VEC_LIMIT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10.0000 |
1 |
1 |
PHY_VEC_SORT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
0.0000 |
0 |
29 |
3 |
3 |
3 |
3.0000 |
30 |
1 |
1 |
1 |
1.0000 |
31 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1078.0000 |
2 |
2 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
3 |
3 |
3 |
3.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1079.0000 |
3 |
3 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1732155387.540954 |
1732155388.422451 |
1644390.0000 |
1644390 |
1644390 |
881497.0000 |
881497 |
881497 |
6 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1079.0000 |
4 |
4 |
PHY_VEC_HASH_UNION |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1732155387.540954 |
1732155388.422451 |
1644390.0000 |
1644390 |
1644390 |
881497.0000 |
881497 |
881497 |
6 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
468.0000 |
5 |
5 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:27.540954 |
1732155386.781228 |
1732155388.424561 |
1732155387.540954 |
1732155387.540954 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
3 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
3 |
3 |
3 |
3.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
468.0000 |
6 |
6 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1732155387.131841 |
1732155387.539898 |
1643333.0000 |
1643333 |
1643333 |
408057.0000 |
408057 |
408057 |
95 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
468.0000 |
7 |
7 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1732155387.131841 |
1732155387.539898 |
1643333.0000 |
1643333 |
1643333 |
408057.0000 |
408057 |
408057 |
95 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
8 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
9 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
10 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
11 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
12 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
13 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155386946452 |
1732155386946452 |
1732155386946452 |
1732155386946452.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
14 |
PHY_PX_REDUCE_TRANSMIT |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
64120.3333 |
101055 |
32672 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466160743686 |
1732155386946452 |
1732155386889277 |
1732155386914562.0000 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
15 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
64120.3333 |
101055 |
32672 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
16 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
64120.3333 |
101055 |
32672 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
155.0000 |
17 |
17 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
1732155386.887701 |
1732155386.919089 |
64120.3333 |
101055 |
32672 |
0.0000 |
0 |
0 |
153 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
239.0000 |
18 |
18 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
64120.3333 |
101055 |
32672 |
26751.6667 |
43169 |
13899 |
239 |
0.6780 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
261.0000 |
19 |
19 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.845397 |
1732155386.892787 |
63768.0000 |
101055 |
31615 |
30988.6667 |
47390 |
17087 |
1020 |
0.6394 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466160645348 |
1732155386892787 |
1732155386866410 |
1732155386881782.6667 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
261.0000 |
20 |
20 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.825723 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
1065.0000 |
1065 |
1065 |
340 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155386826788 |
1732155386826788 |
1732155386826788 |
1732155386826788.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
261.0000 |
21 |
21 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.825723 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
1065.0000 |
1065 |
1065 |
340 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
41 |
41 |
41 |
41.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
5 |
374 |
374 |
374 |
374.0000 |
6 |
374 |
374 |
374 |
374.0000 |
0.0000 |
0.0000 |
0.0000 |
233.0000 |
22 |
22 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.822553 |
2024-11-21 10:16:26.823609 |
1732155386.819371 |
1732155386.826788 |
1732155386.822553 |
1732155386.823609 |
7417.0000 |
7417 |
7417 |
1056.0000 |
1056 |
1056 |
374 |
0.0000 |
0 |
36 |
19016 |
19016 |
19016 |
19016.0000 |
37 |
86784 |
86784 |
86784 |
86784.0000 |
38 |
374 |
374 |
374 |
374.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6350.0000 |
22 |
23 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.824668 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.824668 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
2120.0000 |
2120 |
2120 |
15378 |
0.0000 |
0 |
36 |
389305 |
389305 |
389305 |
389305.0000 |
37 |
2861568 |
2861568 |
2861568 |
2861568.0000 |
38 |
15552 |
15552 |
15552 |
15552.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
24 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
64120.3333 |
101055 |
32672 |
26751.6667 |
43169 |
13899 |
239 |
0.6780 |
1020 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
3410 |
1364 |
1023 |
1136.6667 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
25 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
64120.3333 |
101055 |
32672 |
26751.6667 |
43169 |
13899 |
239 |
0.6780 |
3407 |
36 |
406027 |
302447 |
49795 |
135342.3333 |
37 |
68562464 |
66787104 |
752960 |
22854154.6667 |
38 |
239 |
233 |
3 |
79.6667 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
26 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
1732155386.887701 |
1732155386.919089 |
64120.3333 |
101055 |
32672 |
0.0000 |
0 |
0 |
153 |
0.0000 |
239 |
36 |
2065624 |
1961103 |
51329 |
688541.3333 |
37 |
118857 |
115872 |
1490 |
39619.0000 |
38 |
239 |
233 |
3 |
79.6667 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
27 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
64120.3333 |
101055 |
32672 |
None |
None |
None |
0 |
None |
153 |
36 |
114257 |
64672 |
16123 |
38085.6667 |
37 |
55752680 |
53935200 |
732440 |
18584226.6667 |
38 |
153 |
148 |
2 |
51.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
28 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
None |
1732155386.845397 |
1732155386.946452 |
None |
None |
64120.3333 |
101055 |
32672 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
29 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
30 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
31 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
32 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
10 |
35 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
36 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
37 |
PHY_VEC_MERGE_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
38 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
39 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
40 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
41 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
42 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
43 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
44 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
45 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
46 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
47 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
48 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
49 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
50 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
51 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
52 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
17 |
53 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
54 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
55 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
56 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
57 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
58 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
310.0000 |
8 |
59 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.781228 |
1732155388.423506 |
1732155387.131841 |
1732155387.131841 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1268.0000 |
9 |
60 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.947508 |
None |
1732155386.781228 |
1732155388.423506 |
1732155386.947508 |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
1268 |
None |
0 |
36 |
5128 |
5128 |
5128 |
5128.0000 |
37 |
40576 |
40576 |
40576 |
40576.0000 |
38 |
1268 |
1268 |
1268 |
1268.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
9 |
61 |
PHY_SORT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.130780 |
2024-11-21 10:16:27.130780 |
1732155386.781228 |
1732155388.423506 |
1732155387.130780 |
1732155387.130780 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
29 |
31 |
31 |
31 |
31.0000 |
30 |
1 |
1 |
1 |
1.0000 |
31 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
10 |
62 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
11 |
63 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.948565 |
2024-11-21 10:16:26.948565 |
1732155386.781228 |
1732155388.423506 |
1732155386.948565 |
1732155386.948565 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
505 |
505 |
505 |
505.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
11 |
64 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
12 |
65 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.781228 |
1732155388.423506 |
1732155387.128669 |
1732155387.128669 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
13 |
66 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.781228 |
1732155388.423506 |
1732155387.097014 |
1732155387.097014 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
14 |
67 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.781228 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
15 |
68 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.053788 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.053788 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
22119.0000 |
22119 |
22119 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387075907 |
1732155387075907 |
1732155387075907 |
1732155387075907.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
16 |
69 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387058465 |
1732155387058465 |
1732155387058465 |
1732155387058465.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
17 |
70 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
18 |
71 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.056350 |
2024-11-21 10:16:27.056350 |
1732155386.976164 |
1732155387.058465 |
1732155387.056350 |
1732155387.056350 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
36 |
18314 |
18314 |
18314 |
18314.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
72 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
0.0000 |
69 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
34987 |
34987 |
34987 |
34987.0000 |
38 |
69 |
69 |
69 |
69.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
73 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
0.0000 |
69 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
74 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387075907 |
1732155387075907 |
1732155387075907 |
1732155387075907.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
75 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
1732155387.076530 |
1732155387.076530 |
1059.0000 |
1059 |
1059 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387076530 |
1732155387076530 |
1732155387076530 |
1732155387076530.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
76 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
1732155387.076530 |
1732155387.076530 |
1059.0000 |
1059 |
1059 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
12638 |
12638 |
12638 |
12638.0000 |
37 |
494 |
494 |
494 |
494.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
77 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.782285 |
1732155388.423506 |
1732155387.097014 |
1732155387.097014 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
0.0000 |
69 |
36 |
121381 |
121381 |
121381 |
121381.0000 |
37 |
10035648 |
10035648 |
10035648 |
10035648.0000 |
38 |
101 |
101 |
101 |
101.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
78 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.782285 |
1732155388.423506 |
1732155387.128669 |
1732155387.128669 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
0.0000 |
31 |
36 |
236007 |
236007 |
236007 |
236007.0000 |
37 |
24705920 |
24705920 |
24705920 |
24705920.0000 |
38 |
31 |
31 |
31 |
31.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
79 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.782285 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
0.0000 |
31 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
12543 |
12543 |
12543 |
12543.0000 |
38 |
31 |
31 |
31 |
31.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
8 |
80 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
81 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.782285 |
1732155388.423506 |
1732155387.131841 |
1732155387.131841 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
9 |
82 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
10 |
83 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387213755 |
1732155387213755 |
1732155387213755 |
1732155387213755.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
11 |
84 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387217225 |
1732155387217225 |
1732155387217225 |
1732155387217225.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
12 |
85 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
13 |
86 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
14 |
87 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
15 |
88 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
64 |
64 |
64 |
64.0000 |
5 |
9 |
9 |
9 |
9.0000 |
6 |
9 |
9 |
9 |
9.0000 |
0.0000 |
0.0000 |
0.0000 |
476.0000 |
16 |
89 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.206686 |
1732155387.218282 |
1732155387.207746 |
1732155387.207746 |
11596.0000 |
11596 |
11596 |
0.0000 |
0 |
0 |
9 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
735.0000 |
17 |
90 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.217225 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.217225 |
1732155387.207746 |
1732155387.207746 |
9479.0000 |
9479 |
9479 |
0.0000 |
0 |
0 |
9 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387207746 |
1732155387207746 |
1732155387207746 |
1732155387207746.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
2 |
2 |
2 |
2.0000 |
9 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
735.0000 |
18 |
91 |
PHY_PX_DIST_TRANSMIT |
3 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.187656 |
1732155387.169649 |
1732155387.187656 |
1732155387.170705 |
1732155387.187656 |
1400.6667 |
2110 |
1036 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466161539073 |
1732155387187656 |
1732155387171759 |
1732155387179691.0000 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
735.0000 |
19 |
92 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.187656 |
1732155387.169649 |
1732155387.187656 |
1732155387.170705 |
1732155387.187656 |
1400.6667 |
2110 |
1036 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
744.0000 |
20 |
93 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
1732155387.169649 |
1732155387.187656 |
1732155387.169649 |
1732155387.187656 |
1400.6667 |
2110 |
1036 |
1055.3333 |
2110 |
0 |
30 |
1.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466161538037 |
1732155387187656 |
1732155387171759 |
1732155387179345.6667 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
744.0000 |
21 |
94 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387153911 |
1732155387153911 |
1732155387153911 |
1732155387153911.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
744.0000 |
22 |
95 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
78.0000 |
23 |
96 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.145476 |
1732155387.145476 |
1732155387.153911 |
1732155387.145476 |
1732155387.145476 |
8435.0000 |
8435 |
8435 |
0.0000 |
0 |
0 |
78 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
205392 |
205392 |
205392 |
205392.0000 |
38 |
78 |
78 |
78 |
78.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14.0000 |
23 |
97 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
78 |
36 |
31501 |
31501 |
31501 |
31501.0000 |
37 |
20040384 |
20040384 |
20040384 |
20040384.0000 |
38 |
2176 |
2176 |
2176 |
2176.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
98 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.187656 |
1732155387.169649 |
1732155387.187656 |
1732155387.170705 |
1732155387.187656 |
1400.6667 |
2110 |
1036 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
30 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
110 |
44 |
33 |
36.6667 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
99 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.187656 |
1732155387.169649 |
1732155387.187656 |
1732155387.170705 |
1732155387.187656 |
1400.6667 |
2110 |
1036 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
107 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
2918720 |
2918720 |
0 |
972906.6667 |
38 |
10 |
10 |
0 |
3.3333 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
100 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.218282 |
1732155387.207746 |
1732155387.207746 |
10536.0000 |
10536 |
10536 |
0.0000 |
0 |
0 |
9 |
0.0000 |
9 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
4450 |
4450 |
4450 |
4450.0000 |
38 |
9 |
9 |
9 |
9.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1465.0000 |
16 |
101 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.210887 |
2024-11-21 10:16:27.217225 |
1732155387.207746 |
1732155387.218282 |
1732155387.210887 |
1732155387.217225 |
10536.0000 |
10536 |
10536 |
6338.0000 |
6338 |
6338 |
1408 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
102 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
103 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
104 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
105 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
None |
None |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
106 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
None |
None |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
156.0000 |
8 |
109 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.457913 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
64 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
64 |
64 |
64 |
64.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
156.0000 |
9 |
110 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.396851 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
61062.0000 |
61062 |
61062 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
156.0000 |
10 |
111 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.396851 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
61062.0000 |
61062 |
61062 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
155.0000 |
11 |
112 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.423506 |
1732155387.396851 |
1732155387.400024 |
1641221.0000 |
1641221 |
1641221 |
3173.0000 |
3173 |
3173 |
66 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
66 |
66 |
66 |
66.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
310.0000 |
12 |
113 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
50 |
50 |
50 |
50.0000 |
4 |
4096 |
4096 |
4096 |
4096.0000 |
5 |
649 |
649 |
649 |
649.0000 |
6 |
649 |
649 |
649 |
649.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
13 |
114 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.238966 |
2024-11-21 10:16:27.238966 |
1732155386.782285 |
1732155388.423506 |
1732155387.238966 |
1732155387.238966 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
649 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387238966 |
1732155387238966 |
1732155387238966 |
1732155387238966.0000 |
24 |
2 |
2 |
2 |
2.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
14 |
115 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.243663 |
1732155387.240480 |
1732155387.243663 |
1732155387.241541 |
1732155387.243663 |
3183.0000 |
3183 |
3183 |
2122.0000 |
2122 |
2122 |
649 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387243663 |
1732155387243663 |
1732155387243663 |
1732155387243663.0000 |
24 |
2 |
2 |
2 |
2.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
15 |
116 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.242602 |
1732155387.240480 |
1732155387.243663 |
1732155387.241541 |
1732155387.242602 |
3183.0000 |
3183 |
3183 |
1061.0000 |
1061 |
1061 |
649 |
0.0000 |
0 |
36 |
34880 |
34880 |
34880 |
34880.0000 |
37 |
169370 |
169370 |
169370 |
169370.0000 |
38 |
655 |
655 |
655 |
655.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
310.0000 |
13 |
117 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
235.0000 |
14 |
118 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1732155387.367346 |
1732155387.367346 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
235.0000 |
15 |
119 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1732155387.349507 |
1732155387.349507 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
235.0000 |
16 |
120 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1732155387.348483 |
1732155387.348483 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
235.0000 |
17 |
121 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.326367 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1732155387.326367 |
1732155387.326367 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
5 |
5 |
5 |
5.0000 |
4 |
512 |
512 |
512 |
512.0000 |
5 |
66 |
66 |
66 |
66.0000 |
6 |
66 |
66 |
66 |
66.0000 |
0.0000 |
0.0000 |
0.0000 |
235.0000 |
18 |
122 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.325312 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.325312 |
1641221.0000 |
1641221 |
1641221 |
1056.0000 |
1056 |
1056 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
112 |
112 |
112 |
112.0000 |
4 |
8192 |
8192 |
8192 |
8192.0000 |
5 |
1268 |
1268 |
1268 |
1268.0000 |
6 |
1268 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
1268.0000 |
19 |
123 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.240022 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.240022 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
1055.0000 |
1055 |
1055 |
1268 |
0.0000 |
0 |
36 |
12655 |
12655 |
12655 |
12655.0000 |
37 |
162304 |
162304 |
162304 |
162304.0000 |
38 |
1268 |
1268 |
1268 |
1268.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
19 |
124 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
20 |
125 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.241077 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
611 |
611 |
611 |
611.0000 |
37 |
321 |
321 |
321 |
321.0000 |
38 |
3 |
3 |
3 |
3.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
20 |
126 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
21 |
127 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.241077 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
21 |
128 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
22 |
129 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
130 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.242132 |
2024-11-21 10:16:27.242132 |
1732155386.782285 |
1732155388.423506 |
1732155387.242132 |
1732155387.242132 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
527 |
527 |
527 |
527.0000 |
37 |
90 |
90 |
90 |
90.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
232.0000 |
23 |
131 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
24 |
132 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.302118 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
25 |
133 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.274683 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.274683 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
27435.0000 |
27435 |
27435 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387302118 |
1732155387302118 |
1732155387302118 |
1732155387302118.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
26 |
134 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.279805 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.279805 |
12860.0000 |
12860 |
12860 |
1064.0000 |
1064 |
1064 |
69 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387279805 |
1732155387279805 |
1732155387279805 |
1732155387279805.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
27 |
135 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.278741 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
32 |
32 |
32 |
32.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
5 |
320 |
320 |
320 |
320.0000 |
6 |
320 |
320 |
320 |
320.0000 |
0.0000 |
0.0000 |
0.0000 |
320.0000 |
28 |
136 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.268005 |
2024-11-21 10:16:27.268005 |
1732155387.266945 |
1732155387.279805 |
1732155387.268005 |
1732155387.268005 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
320 |
0.0000 |
0 |
36 |
18828 |
18828 |
18828 |
18828.0000 |
37 |
147713 |
147713 |
147713 |
147713.0000 |
38 |
320 |
320 |
320 |
320.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
182.0000 |
28 |
137 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.278741 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
69 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
25 |
138 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.302118 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
0.0000 |
69 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
139 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.301062 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.301062 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387302118 |
1732155387302118 |
1732155387302118 |
1732155387302118.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
140 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387301931 |
1732155387301931 |
1732155387301931 |
1732155387301931.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
141 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
24 |
142 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
69 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
10035648 |
10035648 |
10035648 |
10035648.0000 |
38 |
101 |
101 |
101 |
101.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
143 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
66 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
24817 |
24817 |
24817 |
24817.0000 |
38 |
66 |
66 |
66 |
66.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
37334.0000 |
18 |
144 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.325312 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1732155387.325312 |
1732155387.326367 |
1641221.0000 |
1641221 |
1641221 |
1055.0000 |
1055 |
1055 |
37334 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
13551309 |
13551309 |
13551309 |
13551309.0000 |
38 |
37334 |
37334 |
37334 |
37334.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
145 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1732155387.348483 |
1732155387.348483 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
4 |
0.0000 |
66 |
36 |
20372 |
20372 |
20372 |
20372.0000 |
37 |
5812224 |
5812224 |
5812224 |
5812224.0000 |
38 |
4 |
4 |
4 |
4.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
146 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1732155387.349507 |
1732155387.349507 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
61 |
0.0000 |
66 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
8536 |
8536 |
8536 |
8536.0000 |
38 |
66 |
66 |
66 |
66.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
147 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1732155387.367346 |
1732155387.367346 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
0.0000 |
66 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
66 |
66 |
66 |
66.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
148 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
51 |
0.0000 |
66 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
53849680 |
53849680 |
53849680 |
53849680.0000 |
38 |
51 |
51 |
51 |
51.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
149 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
0 |
0 |
0 |
0.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
150 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
151 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
152 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
153 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
154 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
155 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
156 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
157 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
158 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
21 |
159 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
1 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
321 |
321 |
321 |
321.0000 |
38 |
3 |
3 |
3 |
3.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
160 |
PHY_SORT |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
30 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
161 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
162 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
1 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
90 |
90 |
90 |
90.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
163 |
PHY_SORT |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
30 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
24 |
164 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
25 |
165 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
1732155387.400024 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
25 |
166 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
167 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
168 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387457913 |
1732155387457913 |
1732155387457913 |
1732155387457913.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
169 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.461879 |
1732155387.425910 |
1732155387.461879 |
None |
1732155387.461879 |
35969.0000 |
35969 |
35969 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387461879 |
1732155387461879 |
1732155387461879 |
1732155387461879.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
29 |
170 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
None |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
1 |
1 |
1 |
1.0000 |
4 |
256 |
256 |
256 |
256.0000 |
5 |
35 |
35 |
35 |
35.0000 |
6 |
35 |
35 |
35 |
35.0000 |
0.0000 |
0.0000 |
0.0000 |
228.0000 |
30 |
171 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.436424 |
2024-11-21 10:16:27.439611 |
1732155387.425910 |
1732155387.461879 |
1732155387.436424 |
1732155387.439611 |
35969.0000 |
35969 |
35969 |
3187.0000 |
3187 |
3187 |
35 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
257.0000 |
30 |
172 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
1732155387.459757 |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
1063.0000 |
1063 |
1063 |
187 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
257.0000 |
31 |
173 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.453411 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.453411 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
0.0000 |
0 |
0 |
338 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
41 |
41 |
41 |
41.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
5 |
374 |
374 |
374 |
374.0000 |
6 |
374 |
374 |
374 |
374.0000 |
0.0000 |
0.0000 |
0.0000 |
233.0000 |
32 |
174 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.440669 |
2024-11-21 10:16:27.441724 |
1732155387.425910 |
1732155387.461879 |
1732155387.440669 |
1732155387.441724 |
35969.0000 |
35969 |
35969 |
1055.0000 |
1055 |
1055 |
374 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
86784 |
86784 |
86784 |
86784.0000 |
38 |
374 |
374 |
374 |
374.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
32 |
175 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.444898 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
8513.0000 |
8513 |
8513 |
14021 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
33 |
176 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.444898 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
8513.0000 |
8513 |
8513 |
14021 |
0.0000 |
0 |
11 |
8192 |
8192 |
8192 |
8192.0000 |
6 |
14021 |
14021 |
14021 |
14021.0000 |
4 |
32768 |
32768 |
32768 |
32768.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
34 |
177 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.441724 |
2024-11-21 10:16:27.444898 |
1732155387.425910 |
1732155387.461879 |
1732155387.441724 |
1732155387.444898 |
35969.0000 |
35969 |
35969 |
3174.0000 |
3174 |
3174 |
15365 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
2861568 |
2861568 |
2861568 |
2861568.0000 |
38 |
15552 |
15552 |
15552 |
15552.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
31 |
178 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
1732155387.459757 |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
1063.0000 |
1063 |
1063 |
187 |
0.0000 |
338 |
36 |
16736 |
16736 |
16736 |
16736.0000 |
37 |
167909 |
167909 |
167909 |
167909.0000 |
38 |
338 |
338 |
338 |
338.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
179 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
180 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
183 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
184 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
185 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
186 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
187 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
188 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
189 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
190 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
191 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
192 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
193 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
194 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
195 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
196 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
197 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
198 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
15 |
199 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
200 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.457913 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
201 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
17 |
202 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18.0000 |
18 |
203 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18.0000 |
19 |
204 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
13551309 |
13551309 |
13551309 |
13551309.0000 |
38 |
37334 |
37334 |
37334 |
37334.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
205 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
206 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
207 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
208 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
209 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
210 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
211 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
212 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
213 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
216 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
217 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
218 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
219 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
220 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
221 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
222 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
223 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.480036 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
224 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.480036 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387480036 |
1732155387480036 |
1732155387480036 |
1732155387480036.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
225 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387484077 |
1732155387484077 |
1732155387484077 |
1732155387484077.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
226 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
227 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
228 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
229 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
230 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
231 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
232 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
233 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
234 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
235 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
236 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
237 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
11 |
238 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
239 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
240 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
243 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
244 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
245 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
246 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
247 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
248 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
249 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
250 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387539898 |
1732155387539898 |
1732155387539898 |
1732155387539898.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
251 |
PHY_PX_REDUCE_TRANSMIT |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.527280 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466162611687 |
1732155387544140 |
1732155387527280 |
1732155387537229.0000 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
252 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.527280 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
253 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.527280 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
254 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.527280 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
255 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.527280 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466162611687 |
1732155387544140 |
1732155387527280 |
1732155387537229.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
256 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.514643 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.514643 |
1732155387.515708 |
None |
1732155387.515708 |
1065.0000 |
1065 |
1065 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387515708 |
1732155387515708 |
1732155387515708 |
1732155387515708.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
257 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
None |
1732155387.515708 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
258 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
None |
1732155387.515708 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
22 |
259 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
None |
1732155387.515708 |
1732155387.515708 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
260 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.527280 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
261 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.527280 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
262 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.527280 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
263 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.527280 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
264 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
265 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
266 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
267 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
268 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
271 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
272 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
612.0000 |
5 |
273 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.422451 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155388.422451 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
3 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
3 |
3 |
3 |
3.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
612.0000 |
6 |
274 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155387.832622 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
589829.0000 |
589829 |
589829 |
140 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
612.0000 |
7 |
275 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155387.832622 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
589829.0000 |
589829 |
589829 |
140 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
276 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
277 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
116940.0000 |
116940 |
116940 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
278 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
279 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.695722 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
19960.0000 |
19960 |
19960 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
280 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.678841 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
281 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.677786 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
1055.0000 |
1055 |
1055 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387677786 |
1732155387677786 |
1732155387677786 |
1732155387677786.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
282 |
PHY_PX_REDUCE_TRANSMIT |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466162970616 |
1732155387677786 |
1732155387636180 |
1732155387656872.0000 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
283 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
284 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
226.0000 |
17 |
285 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
1732155387.636180 |
1732155387.657773 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
168 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
349.0000 |
18 |
286 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.635134 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.635134 |
66335.6667 |
94771 |
38038 |
28468.6667 |
48389 |
2113 |
285 |
0.9563 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
382.0000 |
19 |
287 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.635134 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.635134 |
66335.6667 |
94771 |
38038 |
34529.0000 |
48389 |
18206 |
1467 |
0.6238 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466162876273 |
1732155387635134 |
1732155387609735 |
1732155387625424.3333 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
382.0000 |
20 |
288 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.571685 |
1732155387.566350 |
1732155387.571685 |
1732155387.570608 |
1732155387.571685 |
5335.0000 |
5335 |
5335 |
1077.0000 |
1077 |
1077 |
489 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387571685 |
1732155387571685 |
1732155387571685 |
1732155387571685.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
382.0000 |
21 |
289 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
1732155387.570608 |
1732155387.570608 |
5335.0000 |
5335 |
5335 |
0.0000 |
0 |
0 |
489 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
46 |
46 |
46 |
46.0000 |
4 |
4096 |
4096 |
4096 |
4096.0000 |
5 |
547 |
547 |
547 |
547.0000 |
6 |
547 |
547 |
547 |
547.0000 |
0.0000 |
0.0000 |
0.0000 |
341.0000 |
22 |
290 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.568487 |
2024-11-21 10:16:27.569551 |
1732155387.566350 |
1732155387.571685 |
1732155387.568487 |
1732155387.569551 |
5335.0000 |
5335 |
5335 |
1064.0000 |
1064 |
1064 |
547 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
76256 |
76256 |
76256 |
76256.0000 |
38 |
547 |
547 |
547 |
547.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6350.0000 |
22 |
291 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.569551 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
1732155387.569551 |
1732155387.570608 |
5335.0000 |
5335 |
5335 |
1057.0000 |
1057 |
1057 |
15378 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
2861568 |
2861568 |
2861568 |
2861568.0000 |
38 |
15552 |
15552 |
15552 |
15552.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
292 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.635134 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.635134 |
66335.6667 |
94771 |
38038 |
28468.6667 |
48389 |
2113 |
285 |
0.9563 |
1467 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
4900 |
1960 |
1470 |
1633.3333 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
293 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.635134 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.635134 |
66335.6667 |
94771 |
38038 |
28468.6667 |
48389 |
2113 |
285 |
0.9563 |
4897 |
36 |
303592 |
228287 |
14243 |
101197.3333 |
37 |
84028768 |
82069632 |
284064 |
28009589.3333 |
38 |
285 |
279 |
1 |
95.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
294 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
1732155387.636180 |
1732155387.657773 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
168 |
0.0000 |
285 |
36 |
1782304 |
1674842 |
18095 |
594101.3333 |
37 |
142451 |
139459 |
500 |
47483.6667 |
38 |
285 |
279 |
1 |
95.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
295 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
1 |
0.0000 |
168 |
36 |
32816 |
32816 |
0 |
10938.6667 |
37 |
62273120 |
61161160 |
370760 |
20757706.6667 |
38 |
168 |
165 |
1 |
56.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
296 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
66689.3333 |
94771 |
39099 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
390 |
390 |
0 |
130.0000 |
38 |
1 |
1 |
0 |
0.3333 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
297 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.678841 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
298 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.695722 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
19960.0000 |
19960 |
19960 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
507 |
507 |
507 |
507.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
299 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
300 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.714628 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.714628 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
1054.0000 |
1054 |
1054 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387715682 |
1732155387715682 |
1732155387715682 |
1732155387715682.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
301 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387716014 |
1732155387716014 |
1732155387716014 |
1732155387716014.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
302 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
10 |
303 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
116940.0000 |
116940 |
116940 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
16224 |
16224 |
16224 |
16224.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
304 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
305 |
PHY_VEC_MERGE_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
306 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
307 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
308 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1732155387.831566 |
1732155387.831566 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
309 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1732155387.814676 |
1732155387.814676 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
310 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
311 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
312 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
313 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1732155387.778848 |
1732155387.778848 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
314 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1732155387.777793 |
1732155387.777793 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
315 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1732155387.760960 |
1732155387.760960 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
316 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.743060 |
2024-11-21 10:16:27.743060 |
1732155386.782285 |
1732155388.424561 |
1732155387.743060 |
1732155387.743060 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
291872 |
291872 |
291872 |
291872.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
317 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1732155387.760960 |
1732155387.760960 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
498 |
498 |
498 |
498.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
318 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1732155387.777793 |
1732155387.777793 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
370760 |
370760 |
370760 |
370760.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
319 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1732155387.778848 |
1732155387.778848 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
320 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
17 |
321 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
16224 |
16224 |
16224 |
16224.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
322 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
323 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1732155387.814676 |
1732155387.814676 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
18450 |
18450 |
18450 |
18450.0000 |
37 |
130528 |
130528 |
130528 |
130528.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
324 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1732155387.831566 |
1732155387.831566 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
387 |
387 |
387 |
387.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
325 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
36 |
15152 |
15152 |
15152 |
15152.0000 |
37 |
131008 |
131008 |
131008 |
131008.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
326 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
405.0000 |
8 |
327 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
112 |
112 |
112 |
112.0000 |
4 |
8192 |
8192 |
8192 |
8192.0000 |
5 |
1268 |
1268 |
1268 |
1268.0000 |
6 |
1268 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
1268.0000 |
9 |
328 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1268 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
40576 |
40576 |
40576 |
40576.0000 |
38 |
1268 |
1268 |
1268 |
1268.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
400.0000 |
9 |
329 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
10 |
330 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
400.0000 |
10 |
331 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
400.0000 |
11 |
332 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1732155387.942064 |
1732155387.942064 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
12 |
333 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1732155387.912557 |
1732155387.912557 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
13 |
334 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.887349 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
14 |
335 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.865246 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.865246 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
22103.0000 |
22103 |
22103 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387887349 |
1732155387887349 |
1732155387887349 |
1732155387887349.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
15 |
336 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.870300 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.870300 |
11733.0000 |
11733 |
11733 |
1057.0000 |
1057 |
1057 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387870300 |
1732155387870300 |
1732155387870300 |
1732155387870300.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
16 |
337 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.869243 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
17 |
338 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.867090 |
2024-11-21 10:16:27.867090 |
1732155387.858567 |
1732155387.870300 |
1732155387.867090 |
1732155387.867090 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
339 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.869243 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
0.0000 |
81 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
41060 |
41060 |
41060 |
41060.0000 |
38 |
81 |
81 |
81 |
81.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
340 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.887349 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
0.0000 |
81 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
341 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.886290 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.886290 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
1059.0000 |
1059 |
1059 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387887349 |
1732155387887349 |
1732155387887349 |
1732155387887349.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
342 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387887174 |
1732155387887174 |
1732155387887174 |
1732155387887174.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
343 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
344 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1732155387.912557 |
1732155387.912557 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
0.0000 |
81 |
36 |
234414 |
234414 |
234414 |
234414.0000 |
37 |
13141440 |
13141440 |
13141440 |
13141440.0000 |
38 |
159 |
159 |
159 |
159.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
12 |
345 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1732155387.942064 |
1732155387.942064 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
0.0000 |
60 |
36 |
36775 |
36775 |
36775 |
36775.0000 |
37 |
53078520 |
53078520 |
53078520 |
53078520.0000 |
38 |
60 |
60 |
60 |
60.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
346 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
60 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
24314 |
24314 |
24314 |
24314.0000 |
38 |
60 |
60 |
60 |
60.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
8 |
347 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
348 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.944163 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.944163 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
9 |
349 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
10 |
350 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388012563 |
1732155388012563 |
1732155388012563 |
1732155388012563.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
11 |
351 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.016696 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.016696 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388016696 |
1732155388016696 |
1732155388016696 |
1732155388016696.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
12 |
352 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
13 |
353 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
14 |
354 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6.0000 |
15 |
355 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
976.0000 |
16 |
356 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1507.0000 |
17 |
357 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388015635 |
1732155388015635 |
1732155388015635 |
1732155388015635.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
2 |
2 |
2 |
2.0000 |
9 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
1507.0000 |
18 |
358 |
PHY_PX_DIST_TRANSMIT |
3 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.976787 |
1732155387.997597 |
None |
1732155387.997597 |
1057.6667 |
1062 |
1055 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466163964738 |
1732155387997597 |
1732155387977842 |
1732155387988246.0000 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1507.0000 |
19 |
359 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.976787 |
1732155387.997597 |
None |
1732155387.997597 |
1057.6667 |
1062 |
1055 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1527.0000 |
20 |
360 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
1732155387.976787 |
1732155387.997597 |
1732155387.976787 |
1732155387.997597 |
1057.6667 |
1062 |
1055 |
705.6667 |
1062 |
0 |
3 |
1.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466163963682 |
1732155387997597 |
1732155387977842 |
1732155387987894.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1527.0000 |
21 |
361 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155387964174 |
1732155387964174 |
1732155387964174 |
1732155387964174.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1527.0000 |
22 |
362 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
160.0000 |
23 |
363 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.954696 |
1732155387.954696 |
1732155387.964174 |
1732155387.954696 |
1732155387.954696 |
9478.0000 |
9478 |
9478 |
0.0000 |
0 |
0 |
160 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
205392 |
205392 |
205392 |
205392.0000 |
38 |
160 |
160 |
160 |
160.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14.0000 |
23 |
364 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
160 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
41108480 |
41108480 |
41108480 |
41108480.0000 |
38 |
2795 |
2795 |
2795 |
2795.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
365 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.976787 |
1732155387.997597 |
None |
1732155387.997597 |
1057.6667 |
1062 |
1055 |
None |
None |
None |
0 |
None |
3 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
20 |
8 |
6 |
6.6667 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
366 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.976787 |
1732155387.997597 |
None |
1732155387.997597 |
1057.6667 |
1062 |
1055 |
None |
None |
None |
0 |
None |
17 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
291872 |
291872 |
0 |
97290.6667 |
38 |
1 |
1 |
0 |
0.3333 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
367 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1465.0000 |
16 |
368 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
369 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
370 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
371 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
372 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
373 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
203.0000 |
8 |
376 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.354650 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
79 |
79 |
79 |
79.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
203.0000 |
9 |
377 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.184012 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
170638.0000 |
170638 |
170638 |
80 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
203.0000 |
10 |
378 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.184012 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
170638.0000 |
170638 |
170638 |
80 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
203.0000 |
11 |
379 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.182958 |
2024-11-21 10:16:28.184012 |
1732155386.782285 |
1732155388.425618 |
1732155388.182958 |
1732155388.184012 |
1643333.0000 |
1643333 |
1643333 |
1054.0000 |
1054 |
1054 |
79 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
79 |
79 |
79 |
79.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
405.0000 |
12 |
380 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
50 |
50 |
50 |
50.0000 |
4 |
4096 |
4096 |
4096 |
4096.0000 |
5 |
649 |
649 |
649 |
649.0000 |
6 |
649 |
649 |
649 |
649.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
13 |
381 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.032526 |
2024-11-21 10:16:28.032526 |
1732155386.782285 |
1732155388.424561 |
1732155388.032526 |
1732155388.032526 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
649 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388032526 |
1732155388032526 |
1732155388032526 |
1732155388032526.0000 |
24 |
2 |
2 |
2 |
2.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
14 |
382 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
1732155388.035782 |
1732155388.036842 |
1732155388.035782 |
1732155388.036842 |
1060.0000 |
1060 |
1060 |
1060.0000 |
1060 |
1060 |
649 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388036842 |
1732155388036842 |
1732155388036842 |
1732155388036842.0000 |
24 |
2 |
2 |
2 |
2.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
328.0000 |
15 |
383 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.035782 |
1732155388.035782 |
1732155388.036842 |
1732155388.035782 |
1732155388.035782 |
1060.0000 |
1060 |
1060 |
0.0000 |
0 |
0 |
649 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
169370 |
169370 |
169370 |
169370.0000 |
38 |
655 |
655 |
655 |
655.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
405.0000 |
13 |
384 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
14 |
385 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1732155388.151314 |
1732155388.151314 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
15 |
386 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1732155388.134500 |
1732155388.134500 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
16 |
387 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.132391 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1732155388.132391 |
1732155388.133446 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
7 |
7 |
7 |
7.0000 |
4 |
512 |
512 |
512 |
512.0000 |
5 |
79 |
79 |
79 |
79.0000 |
6 |
79 |
79 |
79 |
79.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
17 |
388 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1732155388.130281 |
1732155388.130281 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
307.0000 |
18 |
389 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
112 |
112 |
112 |
112.0000 |
4 |
8192 |
8192 |
8192 |
8192.0000 |
5 |
1268 |
1268 |
1268 |
1268.0000 |
6 |
1268 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
1268.0000 |
19 |
390 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1268 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
162304 |
162304 |
162304 |
162304.0000 |
38 |
1268 |
1268 |
1268 |
1268.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
19 |
391 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
20 |
392 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
321 |
321 |
321 |
321.0000 |
38 |
3 |
3 |
3 |
3.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
20 |
393 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
21 |
394 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
21 |
395 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
22 |
396 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
4 |
4 |
4 |
4.0000 |
5 |
1 |
1 |
1 |
1.0000 |
6 |
1 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
397 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
90 |
90 |
90 |
90.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
303.0000 |
23 |
398 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
24 |
399 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.086025 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
25 |
400 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.066135 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.066135 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
19890.0000 |
19890 |
19890 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388086025 |
1732155388086025 |
1732155388086025 |
1732155388086025.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
26 |
401 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388069747 |
1732155388069747 |
1732155388069747 |
1732155388069747.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
27 |
402 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
32 |
32 |
32 |
32.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
5 |
320 |
320 |
320 |
320.0000 |
6 |
320 |
320 |
320 |
320.0000 |
0.0000 |
0.0000 |
0.0000 |
320.0000 |
28 |
403 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.061245 |
1732155388.061245 |
1732155388.069747 |
1732155388.061245 |
1732155388.061245 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
320 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
147713 |
147713 |
147713 |
147713.0000 |
38 |
320 |
320 |
320 |
320.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
237.0000 |
28 |
404 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
25 |
405 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.086025 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
0.0000 |
81 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
406 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.084971 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.084971 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
1054.0000 |
1054 |
1054 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388086025 |
1732155388086025 |
1732155388086025 |
1732155388086025.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
407 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
1732155388.085651 |
1732155388.086707 |
1732155388.085651 |
1732155388.086707 |
1056.0000 |
1056 |
1056 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388086707 |
1732155388086707 |
1732155388086707 |
1732155388086707.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
408 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.085651 |
1732155388.085651 |
1732155388.086707 |
1732155388.085651 |
1732155388.085651 |
1056.0000 |
1056 |
1056 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
24 |
409 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
0.0000 |
81 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
13141440 |
13141440 |
13141440 |
13141440.0000 |
38 |
159 |
159 |
159 |
159.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
410 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
79 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
29175 |
29175 |
29175 |
29175.0000 |
38 |
79 |
79 |
79 |
79.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
411 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1732155388.130281 |
1732155388.130281 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
8 |
0.0000 |
79 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
6957056 |
6957056 |
6957056 |
6957056.0000 |
38 |
8 |
8 |
8 |
8.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
37334.0000 |
17 |
412 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.131335 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1732155388.131335 |
1732155388.133446 |
1643333.0000 |
1643333 |
1643333 |
2111.0000 |
2111 |
2111 |
37334 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
13551309 |
13551309 |
13551309 |
13551309.0000 |
38 |
37334 |
37334 |
37334 |
37334.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
413 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1732155388.134500 |
1732155388.134500 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
67 |
0.0000 |
79 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
10194 |
10194 |
10194 |
10194.0000 |
38 |
79 |
79 |
79 |
79.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
414 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1732155388.151314 |
1732155388.151314 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
0.0000 |
79 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
79 |
79 |
79 |
79.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
415 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
56 |
0.0000 |
79 |
36 |
18435 |
18435 |
18435 |
18435.0000 |
37 |
69888800 |
69888800 |
69888800 |
69888800.0000 |
38 |
56 |
56 |
56 |
56.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
416 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.353594 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
11 |
1024 |
1024 |
1024 |
1024.0000 |
6 |
1 |
1 |
1 |
1.0000 |
4 |
2048 |
2048 |
2048 |
2048.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
417 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.353594 |
1732155386.782285 |
1732155388.425618 |
1732155388.353594 |
1732155388.353594 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
418 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.782285 |
1732155388.425618 |
1732155388.336758 |
1732155388.336758 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
419 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.310444 |
2024-11-21 10:16:28.310444 |
1732155386.782285 |
1732155388.425618 |
1732155388.310444 |
1732155388.310444 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
420 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.293583 |
2024-11-21 10:16:28.293583 |
1732155386.782285 |
1732155388.425618 |
1732155388.293583 |
1732155388.293583 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
421 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.292527 |
2024-11-21 10:16:28.292527 |
1732155386.782285 |
1732155388.425618 |
1732155388.292527 |
1732155388.292527 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
422 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.276681 |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
1732155388.276681 |
1732155388.276681 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
423 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
424 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
425 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
21 |
426 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
None |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
1 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
321 |
321 |
321 |
321.0000 |
38 |
3 |
3 |
3 |
3.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
427 |
PHY_SORT |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
29 |
1 |
1 |
1 |
1.0000 |
30 |
1 |
1 |
1 |
1.0000 |
31 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
428 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
429 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
71542.0000 |
71542 |
71542 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
90 |
90 |
90 |
90.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
23 |
430 |
PHY_SORT |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
29 |
1 |
1 |
1 |
1.0000 |
30 |
1 |
1 |
1 |
1.0000 |
31 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
24 |
431 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
25 |
432 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.184012 |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
1732155388.184012 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
25 |
433 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
434 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
435 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.232434 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.232434 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
22064.0000 |
22064 |
22064 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388254498 |
1732155388254498 |
1732155388254498 |
1732155388254498.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
436 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.235351 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
1057.0000 |
1057 |
1057 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388236408 |
1732155388236408 |
1732155388236408 |
1732155388236408.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
29 |
437 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.235351 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
1057.0000 |
1057 |
1057 |
1 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
1 |
1 |
1 |
1.0000 |
4 |
256 |
256 |
256 |
256.0000 |
5 |
35 |
35 |
35 |
35.0000 |
6 |
35 |
35 |
35 |
35.0000 |
0.0000 |
0.0000 |
0.0000 |
228.0000 |
30 |
438 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.213066 |
2024-11-21 10:16:28.214128 |
1732155388.206693 |
1732155388.236408 |
1732155388.213066 |
1732155388.214128 |
29715.0000 |
29715 |
29715 |
1062.0000 |
1062 |
1062 |
35 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
220800 |
220800 |
220800 |
220800.0000 |
38 |
1485 |
1485 |
1485 |
1485.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
375.0000 |
30 |
439 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.234290 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
2118.0000 |
2118 |
2118 |
316 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
375.0000 |
31 |
440 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.228949 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.228949 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
1131.0000 |
1131 |
1131 |
484 |
0.0000 |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
46 |
46 |
46 |
46.0000 |
4 |
4096 |
4096 |
4096 |
4096.0000 |
5 |
547 |
547 |
547 |
547.0000 |
6 |
547 |
547 |
547 |
547.0000 |
0.0000 |
0.0000 |
0.0000 |
341.0000 |
32 |
441 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.216222 |
2024-11-21 10:16:28.217278 |
1732155388.206693 |
1732155388.236408 |
1732155388.216222 |
1732155388.217278 |
29715.0000 |
29715 |
29715 |
1056.0000 |
1056 |
1056 |
547 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
76256 |
76256 |
76256 |
76256.0000 |
38 |
547 |
547 |
547 |
547.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
32 |
442 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.221508 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
8572.0000 |
8572 |
8572 |
14021 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
33 |
443 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.221508 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
8572.0000 |
8572 |
8572 |
14021 |
0.0000 |
0 |
11 |
8192 |
8192 |
8192 |
8192.0000 |
6 |
14021 |
14021 |
14021 |
14021.0000 |
4 |
32768 |
32768 |
32768 |
32768.0000 |
7 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5499.0000 |
34 |
444 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.217278 |
2024-11-21 10:16:28.220452 |
1732155388.206693 |
1732155388.236408 |
1732155388.217278 |
1732155388.220452 |
29715.0000 |
29715 |
29715 |
3174.0000 |
3174 |
3174 |
15365 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
2861568 |
2861568 |
2861568 |
2861568.0000 |
38 |
15552 |
15552 |
15552 |
15552.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
31 |
445 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.234290 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
2118.0000 |
2118 |
2118 |
316 |
0.0000 |
484 |
36 |
18850 |
18850 |
18850 |
18850.0000 |
37 |
239230 |
239230 |
239230 |
239230.0000 |
38 |
484 |
484 |
484 |
484.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
27 |
446 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
28 |
447 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388254498 |
1732155388254498 |
1732155388254498 |
1732155388254498.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
29 |
448 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
1732155388.254495 |
1732155388.255550 |
1732155388.254495 |
1732155388.255550 |
1055.0000 |
1055 |
1055 |
1055.0000 |
1055 |
1055 |
1 |
0.0000 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388255550 |
1732155388255550 |
1732155388255550 |
1732155388255550.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
30 |
449 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.254495 |
1732155388.254495 |
1732155388.255550 |
1732155388.254495 |
1732155388.254495 |
1055.0000 |
1055 |
1055 |
0.0000 |
0 |
0 |
1 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
26 |
450 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
393 |
393 |
393 |
393.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
451 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
507 |
507 |
507 |
507.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
452 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
130 |
130 |
130 |
130.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
453 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.276681 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
36 |
5970 |
5970 |
5970 |
5970.0000 |
37 |
60840 |
60840 |
60840 |
60840.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
454 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.292527 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.292527 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
455 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.293583 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.293583 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
16224 |
16224 |
16224 |
16224.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
456 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.310444 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.310444 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
88064 |
88064 |
88064 |
88064.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
457 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.783339 |
1732155388.425618 |
1732155388.336758 |
1732155388.336758 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
0.0000 |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
884680 |
884680 |
884680 |
884680.0000 |
38 |
1 |
1 |
1 |
1.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
458 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.353594 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.353594 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
459 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
460 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
461 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
462 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
463 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
464 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
465 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
15 |
466 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
8 |
8 |
8 |
8.0000 |
5 |
2 |
2 |
2 |
2.0000 |
6 |
2 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
16 |
467 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.783339 |
1732155388.425618 |
1732155388.354650 |
1732155388.354650 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
2 |
0.0000 |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
150 |
150 |
150 |
150.0000 |
38 |
2 |
2 |
2 |
2.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
16 |
468 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3.0000 |
17 |
469 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31.0000 |
18 |
470 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31.0000 |
19 |
471 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
13551309 |
13551309 |
13551309 |
13551309.0000 |
38 |
37334 |
37334 |
37334 |
37334.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
472 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
473 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
474 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
475 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
476 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
477 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
478 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
479 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
480 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
483 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
484 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
485 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
486 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
487 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
488 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
489 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
490 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
491 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388375117 |
1732155388375117 |
1732155388375117 |
1732155388375117.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
492 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388379279 |
1732155388379279 |
1732155388379279 |
1732155388379279.0000 |
24 |
1 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
493 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
494 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
495 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
496 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
None |
1732155388.379279 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
497 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
None |
1732155388.379279 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
498 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
499 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
500 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
501 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
502 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
13 |
503 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
504 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
505 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
506 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
509 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
510 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
8 |
511 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
9 |
512 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
513 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
514 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
515 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
516 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
1 |
0 |
0 |
0 |
0.0000 |
2 |
0 |
0 |
0 |
0.0000 |
3 |
0 |
0 |
0 |
0.0000 |
4 |
2 |
2 |
2 |
2.0000 |
5 |
0 |
0 |
0 |
0.0000 |
6 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
14 |
517 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388422451 |
1732155388422451 |
1732155388422451 |
1732155388422451.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
15 |
518 |
PHY_PX_REDUCE_TRANSMIT |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.426933 |
1732155388.409793 |
1732155388.426933 |
None |
1732155388.426933 |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466165256573 |
1732155388426933 |
1732155388410848 |
1732155388418857.6667 |
24 |
3 |
1 |
1 |
1.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
16 |
519 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.409793 |
1732155388.426933 |
None |
1732155388.425877 |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
520 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.409793 |
1732155388.426933 |
None |
1732155388.425877 |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
521 |
PHY_NESTED_LOOP_JOIN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.409793 |
1732155388.426933 |
None |
1732155388.425877 |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
522 |
PHY_PX_FIFO_RECEIVE |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.409793 |
1732155388.426933 |
None |
1732155388.425877 |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
5196466165254462 |
1732155388425877 |
1732155388409793 |
1732155388418154.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
523 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
25 |
1732155388400444 |
1732155388400444 |
1732155388400444 |
1732155388400444.0000 |
24 |
3 |
3 |
3 |
3.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
21 |
524 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
22 |
525 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
22 |
526 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
None |
1732155388.399389 |
1732155388.400444 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
19 |
527 |
PHY_VEC_GRANULE_ITERATOR |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.409793 |
1732155388.426933 |
None |
None |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
27 |
0 |
0 |
0 |
0.0000 |
28 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
20 |
528 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.409793 |
1732155388.426933 |
None |
None |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
18 |
529 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.409793 |
1732155388.426933 |
None |
None |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
17 |
530 |
PHY_TABLE_SCAN |
3 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.409793 |
1732155388.426933 |
None |
None |
703.6667 |
1056 |
0 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
14 |
531 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
13 |
532 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
533 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
11 |
534 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
26 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
12 |
535 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
24 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
10 |
0 |
0 |
0 |
0.0000 |
9 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1.0000 |
10 |
538 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.0000 |
9 |
539 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
36 |
0 |
0 |
0 |
0.0000 |
37 |
0 |
0 |
0 |
0.0000 |
38 |
0 |
0 |
0 |
0.0000 |
39 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
调度时序图
数据时序图
SQL_PLAN_MONITOR SQC 级汇总
PLAN_DEPTH |
PLAN_LINE_ID |
PLAN_OPERATION |
PARALLEL |
MIN_FIRST_REFRESH_TIME |
MAX_LAST_REFRESH_TIME |
MIN_FIRST_CHANGE_TIME |
MAX_LAST_CHANGE_TIME |
MIN_FIRST_REFRESH_TS |
MAX_LAST_REFRESH_TS |
MIN_FIRST_CHANGE_TS |
MAX_LAST_CHANGE_TS |
AVG_REFRESH_TIME |
MAX_REFRESH_TIME |
MIN_REFRESH_TIME |
AVG_CHANGE_TIME |
MAX_CHANGE_TIME |
MIN_CHANGE_TIME |
TOTAL_OUTPUT_ROWS |
SKEWNESS |
TOTAL_RESCAN_TIMES |
SVR_IP |
SVR_PORT |
MAX_STAT_1 |
MIN_STAT_1 |
AVG_STAT_1 |
MAX_STAT_2 |
MIN_STAT_2 |
AVG_STAT_2 |
MAX_STAT_3 |
MIN_STAT_3 |
AVG_STAT_3 |
MAX_STAT_4 |
MIN_STAT_4 |
AVG_STAT_4 |
MAX_STAT_5 |
MIN_STAT_5 |
AVG_STAT_5 |
MAX_STAT_6 |
MIN_STAT_6 |
AVG_STAT_6 |
MY_DB_TIME |
MY_CPU_TIME |
MY_IO_TIME |
0 |
0 |
PHY_VEC_LIMIT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
1 |
1 |
PHY_VEC_SORT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.157 |
2882 |
3 |
3 |
3.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2 |
2 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1732155388.423506 |
1732155388.423506 |
1644390.0000 |
1644390 |
1644390 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
3 |
3 |
3.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
3 |
3 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1732155387.540954 |
1732155388.422451 |
1644390.0000 |
1644390 |
1644390 |
881497.0000 |
881497 |
881497 |
6 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
4 |
4 |
PHY_VEC_HASH_UNION |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1732155387.540954 |
1732155388.422451 |
1644390.0000 |
1644390 |
1644390 |
881497.0000 |
881497 |
881497 |
6 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5 |
5 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:27.540954 |
1732155386.781228 |
1732155388.424561 |
1732155387.540954 |
1732155387.540954 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
3 |
3 |
3.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6 |
6 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1732155387.131841 |
1732155387.539898 |
1643333.0000 |
1643333 |
1643333 |
408057.0000 |
408057 |
408057 |
95 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
7 |
7 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1732155387.131841 |
1732155387.539898 |
1643333.0000 |
1643333 |
1643333 |
408057.0000 |
408057 |
408057 |
95 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
8 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
9 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
10 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
11 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
12 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
13 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
None |
1732155386.946452 |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155386946452 |
1732155386946452 |
1732155386946452.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
14 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
101055.0000 |
101055 |
101055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155386946452 |
1732155386946452 |
1732155386946452.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
14 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
None |
1732155386.889277 |
32672.0000 |
32672 |
32672 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155386889277 |
1732155386889277 |
1732155386889277.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
14 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.907957 |
1732155386.849323 |
1732155386.907957 |
None |
1732155386.907957 |
58634.0000 |
58634 |
58634 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155386907957 |
1732155386907957 |
1732155386907957.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
15 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
101055.0000 |
101055 |
101055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
15 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
None |
1732155386.889277 |
32672.0000 |
32672 |
32672 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
15 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
None |
1732155386.906903 |
58634.0000 |
58634 |
58634 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
16 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
101055.0000 |
101055 |
101055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
16 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
None |
1732155386.889277 |
32672.0000 |
32672 |
32672 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
16 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
None |
1732155386.906903 |
58634.0000 |
58634 |
58634 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
17 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.919089 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
1732155386.919089 |
1732155386.919089 |
101055.0000 |
101055 |
101055 |
0.0000 |
0 |
0 |
148 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
17 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.888221 |
2024-11-21 10:16:26.888221 |
1732155386.857662 |
1732155386.890334 |
1732155386.888221 |
1732155386.888221 |
32672.0000 |
32672 |
32672 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
17 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.887701 |
1732155386.849323 |
1732155386.907957 |
1732155386.887701 |
1732155386.887701 |
58634.0000 |
58634 |
58634 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
18 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
1732155386.852511 |
1732155386.866410 |
58634.0000 |
58634 |
58634 |
13899.0000 |
13899 |
13899 |
3 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
18 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
1732155386.862964 |
1732155386.886151 |
32672.0000 |
32672 |
32672 |
23187.0000 |
23187 |
23187 |
3 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
18 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
101055.0000 |
101055 |
101055 |
43169.0000 |
43169 |
43169 |
233 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
19 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
1732155386.849323 |
1732155386.866410 |
58634.0000 |
58634 |
58634 |
17087.0000 |
17087 |
17087 |
340 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155386866410 |
1732155386866410 |
1732155386866410.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
19 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.889277 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.889277 |
1732155386.857662 |
1732155386.886151 |
31615.0000 |
31615 |
31615 |
28489.0000 |
28489 |
28489 |
340 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155386886151 |
1732155386886151 |
1732155386886151.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
19 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.845397 |
1732155386.892787 |
101055.0000 |
101055 |
101055 |
47390.0000 |
47390 |
47390 |
340 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155386892787 |
1732155386892787 |
1732155386892787.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
20 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.825723 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
1065.0000 |
1065 |
1065 |
340 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155386826788 |
1732155386826788 |
1732155386826788.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
21 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.825723 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
1065.0000 |
1065 |
1065 |
340 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
41 |
41 |
41.0000 |
2048 |
2048 |
2048.0000 |
374 |
374 |
374.0000 |
374 |
374 |
374.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
22 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.822553 |
2024-11-21 10:16:26.823609 |
1732155386.819371 |
1732155386.826788 |
1732155386.822553 |
1732155386.823609 |
7417.0000 |
7417 |
7417 |
1056.0000 |
1056 |
1056 |
374 |
0.0000 |
0 |
10.1.250.160 |
2882 |
19016 |
19016 |
19016.0000 |
86784 |
86784 |
86784.0000 |
374 |
374 |
374.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
23 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.824668 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
1732155386.824668 |
1732155386.826788 |
7417.0000 |
7417 |
7417 |
2120.0000 |
2120 |
2120 |
15378 |
0.0000 |
0 |
10.1.250.160 |
2882 |
389305 |
389305 |
389305.0000 |
2861568 |
2861568 |
2861568.0000 |
15552 |
15552 |
15552.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
24 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
1732155386.852511 |
1732155386.866410 |
58634.0000 |
58634 |
58634 |
13899.0000 |
13899 |
13899 |
3 |
0.0000 |
340 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1364 |
1364 |
1364.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
24 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
1732155386.862964 |
1732155386.886151 |
32672.0000 |
32672 |
32672 |
23187.0000 |
23187 |
23187 |
3 |
0.0000 |
340 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1023 |
1023 |
1023.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
24 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
101055.0000 |
101055 |
101055 |
43169.0000 |
43169 |
43169 |
233 |
0.0000 |
340 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1023 |
1023 |
1023.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
25 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
1732155386.852511 |
1732155386.866410 |
58634.0000 |
58634 |
58634 |
13899.0000 |
13899 |
13899 |
3 |
0.0000 |
1363 |
10.1.250.161 |
2882 |
53785 |
53785 |
53785.0000 |
752960 |
752960 |
752960.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
25 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
1732155386.862964 |
1732155386.886151 |
32672.0000 |
32672 |
32672 |
23187.0000 |
23187 |
23187 |
3 |
0.0000 |
1022 |
10.1.250.160 |
2882 |
49795 |
49795 |
49795.0000 |
1022400 |
1022400 |
1022400.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
25 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
1732155386.849618 |
1732155386.892787 |
101055.0000 |
101055 |
101055 |
43169.0000 |
43169 |
43169 |
233 |
0.0000 |
1022 |
10.1.250.157 |
2882 |
302447 |
302447 |
302447.0000 |
66787104 |
66787104 |
66787104.0000 |
233 |
233 |
233.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
26 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.919089 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
1732155386.919089 |
1732155386.919089 |
101055.0000 |
101055 |
101055 |
0.0000 |
0 |
0 |
148 |
None |
233 |
10.1.250.157 |
2882 |
1961103 |
1961103 |
1961103.0000 |
115872 |
115872 |
115872.0000 |
233 |
233 |
233.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
26 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.888221 |
2024-11-21 10:16:26.888221 |
1732155386.857662 |
1732155386.890334 |
1732155386.888221 |
1732155386.888221 |
32672.0000 |
32672 |
32672 |
0.0000 |
0 |
0 |
3 |
None |
3 |
10.1.250.160 |
2882 |
53192 |
53192 |
53192.0000 |
1495 |
1495 |
1495.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
26 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.887701 |
1732155386.849323 |
1732155386.907957 |
1732155386.887701 |
1732155386.887701 |
58634.0000 |
58634 |
58634 |
0.0000 |
0 |
0 |
2 |
None |
3 |
10.1.250.161 |
2882 |
51329 |
51329 |
51329.0000 |
1490 |
1490 |
1490.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
27 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
None |
1732155386.946452 |
101055.0000 |
101055 |
101055 |
None |
None |
None |
0 |
None |
148 |
10.1.250.157 |
2882 |
64672 |
64672 |
64672.0000 |
53935200 |
53935200 |
53935200.0000 |
148 |
148 |
148.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
27 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
None |
1732155386.889277 |
32672.0000 |
32672 |
32672 |
None |
None |
None |
0 |
None |
3 |
10.1.250.160 |
2882 |
33462 |
33462 |
33462.0000 |
1085040 |
1085040 |
1085040.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
27 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
None |
1732155386.906903 |
58634.0000 |
58634 |
58634 |
None |
None |
None |
0 |
None |
2 |
10.1.250.161 |
2882 |
16123 |
16123 |
16123.0000 |
732440 |
732440 |
732440.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
28 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
None |
1732155386.845397 |
1732155386.946452 |
None |
None |
101055.0000 |
101055 |
101055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
28 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
None |
1732155386.857662 |
1732155386.890334 |
None |
None |
32672.0000 |
32672 |
32672 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
28 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
None |
1732155386.849323 |
1732155386.907957 |
None |
None |
58634.0000 |
58634 |
58634 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
29 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
30 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
31 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
32 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
35 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
36 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
37 |
PHY_VEC_MERGE_GROUP_BY |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
38 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
39 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
40 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
41 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
42 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
43 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
44 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
45 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
46 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
47 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
48 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
49 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
50 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
51 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
52 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
53 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
54 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
55 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
56 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
57 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
58 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
None |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
59 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.781228 |
1732155388.423506 |
1732155387.131841 |
1732155387.131841 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
60 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.947508 |
None |
1732155386.781228 |
1732155388.423506 |
1732155386.947508 |
None |
1642278.0000 |
1642278 |
1642278 |
None |
None |
None |
1268 |
None |
0 |
10.1.250.157 |
2882 |
5128 |
5128 |
5128.0000 |
40576 |
40576 |
40576.0000 |
1268 |
1268 |
1268.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
61 |
PHY_SORT |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.130780 |
2024-11-21 10:16:27.130780 |
1732155386.781228 |
1732155388.423506 |
1732155387.130780 |
1732155387.130780 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
31 |
31 |
31.0000 |
1 |
1 |
1.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
62 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
63 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.948565 |
2024-11-21 10:16:26.948565 |
1732155386.781228 |
1732155388.423506 |
1732155386.948565 |
1732155386.948565 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
505 |
505 |
505.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
64 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
65 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.781228 |
1732155388.423506 |
1732155387.128669 |
1732155387.128669 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
66 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.781228 |
1732155388.423506 |
1732155387.097014 |
1732155387.097014 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
31 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
67 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.781228 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1642278.0000 |
1642278 |
1642278 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
68 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.053788 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.053788 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
22119.0000 |
22119 |
22119 |
69 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387075907 |
1732155387075907 |
1732155387075907.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
69 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387058465 |
1732155387058465 |
1732155387058465.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
70 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
71 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.056350 |
2024-11-21 10:16:27.056350 |
1732155386.976164 |
1732155387.058465 |
1732155387.056350 |
1732155387.056350 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.160 |
2882 |
18314 |
18314 |
18314.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
72 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
1732155387.058465 |
1732155387.058465 |
82301.0000 |
82301 |
82301 |
0.0000 |
0 |
0 |
69 |
None |
69 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
34987 |
34987 |
34987.0000 |
69 |
69 |
69.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
73 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
None |
69 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
74 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1732155387.075907 |
1732155387.075907 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387075907 |
1732155387075907 |
1732155387075907.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
75 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
1732155387.076530 |
1732155387.076530 |
1059.0000 |
1059 |
1059 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387076530 |
1732155387076530 |
1732155387076530.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
76 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
1732155387.076530 |
1732155387.076530 |
1059.0000 |
1059 |
1059 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
12638 |
12638 |
12638.0000 |
494 |
494 |
494.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
77 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.782285 |
1732155388.423506 |
1732155387.097014 |
1732155387.097014 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
None |
69 |
10.1.250.157 |
2882 |
121381 |
121381 |
121381.0000 |
10035648 |
10035648 |
10035648.0000 |
101 |
101 |
101.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
78 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.782285 |
1732155388.423506 |
1732155387.128669 |
1732155387.128669 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
None |
31 |
10.1.250.157 |
2882 |
236007 |
236007 |
236007.0000 |
24705920 |
24705920 |
24705920.0000 |
31 |
31 |
31.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
79 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.782285 |
1732155388.423506 |
1732155387.129725 |
1732155387.129725 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
31 |
None |
31 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
12543 |
12543 |
12543.0000 |
31 |
31 |
31.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
80 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
81 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.782285 |
1732155388.423506 |
1732155387.131841 |
1732155387.131841 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
82 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
83 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
None |
1732155387.213755 |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387213755 |
1732155387213755 |
1732155387213755.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
84 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387217225 |
1732155387217225 |
1732155387217225.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
85 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
86 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
87 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
88 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
None |
1732155387.217225 |
11596.0000 |
11596 |
11596 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
64 |
64 |
64.0000 |
9 |
9 |
9.0000 |
9 |
9 |
9.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
89 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.206686 |
1732155387.218282 |
1732155387.207746 |
1732155387.207746 |
11596.0000 |
11596 |
11596 |
0.0000 |
0 |
0 |
9 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
90 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.217225 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.217225 |
1732155387.207746 |
1732155387.207746 |
9479.0000 |
9479 |
9479 |
0.0000 |
0 |
0 |
9 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387207746 |
1732155387207746 |
1732155387207746.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
91 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
None |
1732155387.187656 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387187656 |
1732155387187656 |
1732155387187656.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
91 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.179658 |
1732155387.178622 |
1732155387.179658 |
None |
1732155387.179658 |
1036.0000 |
1036 |
1036 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387179658 |
1732155387179658 |
1732155387179658.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
91 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
1732155387.170705 |
1732155387.171759 |
2110.0000 |
2110 |
2110 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387171759 |
1732155387171759 |
1732155387171759.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
92 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
None |
1732155387.187656 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
92 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
None |
1732155387.178622 |
1036.0000 |
1036 |
1036 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
92 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
1732155387.170705 |
1732155387.171759 |
2110.0000 |
2110 |
2110 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
93 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
1732155387.178622 |
1732155387.178622 |
1036.0000 |
1036 |
1036 |
0.0000 |
0 |
0 |
10 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387178622 |
1732155387178622 |
1732155387178622.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
93 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
1732155387.186600 |
1732155387.187656 |
1056.0000 |
1056 |
1056 |
1056.0000 |
1056 |
1056 |
10 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387187656 |
1732155387187656 |
1732155387187656.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
93 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
1732155387.169649 |
1732155387.171759 |
2110.0000 |
2110 |
2110 |
2110.0000 |
2110 |
2110 |
10 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387171759 |
1732155387171759 |
1732155387171759.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
94 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387153911 |
1732155387153911 |
1732155387153911.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
95 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
96 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.145476 |
1732155387.145476 |
1732155387.153911 |
1732155387.145476 |
1732155387.145476 |
8435.0000 |
8435 |
8435 |
0.0000 |
0 |
0 |
78 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
205392 |
205392 |
205392.0000 |
78 |
78 |
78.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
97 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
1732155387.150749 |
1732155387.153911 |
8435.0000 |
8435 |
8435 |
3162.0000 |
3162 |
3162 |
10 |
0.0000 |
78 |
10.1.250.157 |
2882 |
31501 |
31501 |
31501.0000 |
20040384 |
20040384 |
20040384.0000 |
2176 |
2176 |
2176.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
98 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
None |
1732155387.187656 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
10 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
33 |
33 |
33.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
98 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
None |
1732155387.178622 |
1036.0000 |
1036 |
1036 |
None |
None |
None |
0 |
None |
10 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
44 |
44 |
44.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
98 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
1732155387.170705 |
1732155387.171759 |
2110.0000 |
2110 |
2110 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
10 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
33 |
33 |
33.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
99 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
None |
1732155387.187656 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
32 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
99 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
None |
1732155387.178622 |
1036.0000 |
1036 |
1036 |
None |
None |
None |
0 |
None |
43 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
99 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
1732155387.170705 |
1732155387.171759 |
2110.0000 |
2110 |
2110 |
1054.0000 |
1054 |
1054 |
9 |
0.0000 |
32 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
2918720 |
2918720 |
2918720.0000 |
10 |
10 |
10.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
100 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.218282 |
1732155387.207746 |
1732155387.207746 |
10536.0000 |
10536 |
10536 |
0.0000 |
0 |
0 |
9 |
None |
9 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
4450 |
4450 |
4450.0000 |
9 |
9 |
9.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
101 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.210887 |
2024-11-21 10:16:27.217225 |
1732155387.207746 |
1732155387.218282 |
1732155387.210887 |
1732155387.217225 |
10536.0000 |
10536 |
10536 |
6338.0000 |
6338 |
6338 |
1408 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
102 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
103 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
104 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
None |
None |
10536.0000 |
10536 |
10536 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
105 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
None |
None |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
106 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
None |
None |
1641221.0000 |
1641221 |
1641221 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
109 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.457913 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
64 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
64 |
64 |
64.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
110 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.396851 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
61062.0000 |
61062 |
61062 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
111 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.396851 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
61062.0000 |
61062 |
61062 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
112 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.423506 |
1732155387.396851 |
1732155387.400024 |
1641221.0000 |
1641221 |
1641221 |
3173.0000 |
3173 |
3173 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
66 |
66 |
66.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
113 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
50 |
50 |
50.0000 |
4096 |
4096 |
4096.0000 |
649 |
649 |
649.0000 |
649 |
649 |
649.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
114 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.238966 |
2024-11-21 10:16:27.238966 |
1732155386.782285 |
1732155388.423506 |
1732155387.238966 |
1732155387.238966 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
649 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387238966 |
1732155387238966 |
1732155387238966.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
115 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.243663 |
1732155387.240480 |
1732155387.243663 |
1732155387.241541 |
1732155387.243663 |
3183.0000 |
3183 |
3183 |
2122.0000 |
2122 |
2122 |
649 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387243663 |
1732155387243663 |
1732155387243663.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
116 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.242602 |
1732155387.240480 |
1732155387.243663 |
1732155387.241541 |
1732155387.242602 |
3183.0000 |
3183 |
3183 |
1061.0000 |
1061 |
1061 |
649 |
0.0000 |
0 |
10.1.250.160 |
2882 |
34880 |
34880 |
34880.0000 |
169370 |
169370 |
169370.0000 |
655 |
655 |
655.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
117 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
118 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1732155387.367346 |
1732155387.367346 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
119 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1732155387.349507 |
1732155387.349507 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
120 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1732155387.348483 |
1732155387.348483 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
121 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.326367 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1732155387.326367 |
1732155387.326367 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
5 |
5 |
5.0000 |
512 |
512 |
512.0000 |
66 |
66 |
66.0000 |
66 |
66 |
66.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
122 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.325312 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.325312 |
1641221.0000 |
1641221 |
1641221 |
1056.0000 |
1056 |
1056 |
66 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
112 |
112 |
112.0000 |
8192 |
8192 |
8192.0000 |
1268 |
1268 |
1268.0000 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
123 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.240022 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.240022 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
1055.0000 |
1055 |
1055 |
1268 |
0.0000 |
0 |
10.1.250.157 |
2882 |
12655 |
12655 |
12655.0000 |
162304 |
162304 |
162304.0000 |
1268 |
1268 |
1268.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
124 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
125 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.241077 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
611 |
611 |
611.0000 |
321 |
321 |
321.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
126 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
127 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1732155387.241077 |
1732155387.241077 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
128 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
129 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
130 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.242132 |
2024-11-21 10:16:27.242132 |
1732155386.782285 |
1732155388.423506 |
1732155387.242132 |
1732155387.242132 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
527 |
527 |
527.0000 |
90 |
90 |
90.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
131 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
132 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.302118 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
133 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.274683 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.274683 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
27435.0000 |
27435 |
27435 |
69 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387302118 |
1732155387302118 |
1732155387302118.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
134 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.279805 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.279805 |
12860.0000 |
12860 |
12860 |
1064.0000 |
1064 |
1064 |
69 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387279805 |
1732155387279805 |
1732155387279805.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
135 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.278741 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
32 |
32 |
32.0000 |
2048 |
2048 |
2048.0000 |
320 |
320 |
320.0000 |
320 |
320 |
320.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
136 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.268005 |
2024-11-21 10:16:27.268005 |
1732155387.266945 |
1732155387.279805 |
1732155387.268005 |
1732155387.268005 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
320 |
None |
0 |
10.1.250.160 |
2882 |
18828 |
18828 |
18828.0000 |
147713 |
147713 |
147713.0000 |
320 |
320 |
320.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
137 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
1732155387.278741 |
1732155387.278741 |
12860.0000 |
12860 |
12860 |
0.0000 |
0 |
0 |
69 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
138 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.302118 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
69 |
None |
69 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
139 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.301062 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1732155387.301062 |
1732155387.302118 |
1641221.0000 |
1641221 |
1641221 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387302118 |
1732155387302118 |
1732155387302118.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
140 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387301931 |
1732155387301931 |
1732155387301931.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
141 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
1732155387.301931 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
142 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1732155387.323201 |
1732155387.323201 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
69 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
10035648 |
10035648 |
10035648.0000 |
101 |
101 |
101.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
143 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1732155387.324256 |
1732155387.324256 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
66 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
24817 |
24817 |
24817.0000 |
66 |
66 |
66.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
144 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.325312 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1732155387.325312 |
1732155387.326367 |
1641221.0000 |
1641221 |
1641221 |
1055.0000 |
1055 |
1055 |
37334 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
13551309 |
13551309 |
13551309.0000 |
37334 |
37334 |
37334.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
145 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1732155387.348483 |
1732155387.348483 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
4 |
None |
66 |
10.1.250.157 |
2882 |
20372 |
20372 |
20372.0000 |
5812224 |
5812224 |
5812224.0000 |
4 |
4 |
4.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
146 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1732155387.349507 |
1732155387.349507 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
61 |
None |
66 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
8536 |
8536 |
8536.0000 |
66 |
66 |
66.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
147 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1732155387.367346 |
1732155387.367346 |
1641221.0000 |
1641221 |
1641221 |
0.0000 |
0 |
0 |
66 |
None |
66 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
66 |
66 |
66.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
148 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1732155387.394739 |
1732155387.395792 |
1641221.0000 |
1641221 |
1641221 |
1053.0000 |
1053 |
1053 |
51 |
0.0000 |
66 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
53849680 |
53849680 |
53849680.0000 |
51 |
51 |
51.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
149 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
0 |
0 |
0.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
150 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
151 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
152 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
153 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
154 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
155 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
156 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
157 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
158 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
159 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
321 |
321 |
321.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
160 |
PHY_SORT |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
161 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
162 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
90 |
90 |
90.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
163 |
PHY_SORT |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
164 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
165 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.424561 |
1732155387.400024 |
1732155387.400024 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
166 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
167 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
168 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387457913 |
1732155387457913 |
1732155387457913.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
169 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.461879 |
1732155387.425910 |
1732155387.461879 |
None |
1732155387.461879 |
35969.0000 |
35969 |
35969 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387461879 |
1732155387461879 |
1732155387461879.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
29 |
170 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
None |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
1 |
1 |
1.0000 |
256 |
256 |
256.0000 |
35 |
35 |
35.0000 |
35 |
35 |
35.0000 |
0.0000 |
0.0000 |
0.0000 |
30 |
171 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.436424 |
2024-11-21 10:16:27.439611 |
1732155387.425910 |
1732155387.461879 |
1732155387.436424 |
1732155387.439611 |
35969.0000 |
35969 |
35969 |
3187.0000 |
3187 |
3187 |
35 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
30 |
172 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
1732155387.459757 |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
1063.0000 |
1063 |
1063 |
187 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31 |
173 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.453411 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.453411 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
0.0000 |
0 |
0 |
338 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
41 |
41 |
41.0000 |
2048 |
2048 |
2048.0000 |
374 |
374 |
374.0000 |
374 |
374 |
374.0000 |
0.0000 |
0.0000 |
0.0000 |
32 |
174 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.440669 |
2024-11-21 10:16:27.441724 |
1732155387.425910 |
1732155387.461879 |
1732155387.440669 |
1732155387.441724 |
35969.0000 |
35969 |
35969 |
1055.0000 |
1055 |
1055 |
374 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
86784 |
86784 |
86784.0000 |
374 |
374 |
374.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
32 |
175 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.444898 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
8513.0000 |
8513 |
8513 |
14021 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
33 |
176 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
1732155387.444898 |
1732155387.453411 |
35969.0000 |
35969 |
35969 |
8513.0000 |
8513 |
8513 |
14021 |
0.0000 |
0 |
10.1.250.160 |
2882 |
8192 |
8192 |
8192.0000 |
14021 |
14021 |
14021.0000 |
32768 |
32768 |
32768.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
34 |
177 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.441724 |
2024-11-21 10:16:27.444898 |
1732155387.425910 |
1732155387.461879 |
1732155387.441724 |
1732155387.444898 |
35969.0000 |
35969 |
35969 |
3174.0000 |
3174 |
3174 |
15365 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
2861568 |
2861568 |
2861568.0000 |
15552 |
15552 |
15552.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31 |
178 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
1732155387.459757 |
1732155387.460820 |
35969.0000 |
35969 |
35969 |
1063.0000 |
1063 |
1063 |
187 |
0.0000 |
338 |
10.1.250.160 |
2882 |
16736 |
16736 |
16736.0000 |
167909 |
167909 |
167909.0000 |
338 |
338 |
338.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
179 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
180 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
183 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
184 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
185 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
186 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
187 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
188 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
189 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
190 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
191 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
192 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
193 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
194 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
195 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
196 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
197 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
198 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
199 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
200 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1732155387.457913 |
1732155387.457913 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
201 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
202 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
203 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
204 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.460022 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
13551309 |
13551309 |
13551309.0000 |
37334 |
37334 |
37334.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
205 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
206 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
207 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
208 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
209 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
210 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
211 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
212 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
213 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
216 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
217 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
218 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
219 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
220 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
221 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
222 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.481091 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
223 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.480036 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
224 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.480036 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387480036 |
1732155387480036 |
1732155387480036.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
225 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387484077 |
1732155387484077 |
1732155387484077.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
226 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
227 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
228 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
229 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
230 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
None |
1732155387.484077 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
231 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
232 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
233 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
234 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
235 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
236 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
237 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
238 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
239 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
240 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
243 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
244 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
245 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
246 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
247 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
248 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
249 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
250 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.539898 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387539898 |
1732155387539898 |
1732155387539898.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
251 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
None |
1732155387.527280 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387527280 |
1732155387527280 |
1732155387527280.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
251 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387544140 |
1732155387544140 |
1732155387544140.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
251 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
None |
1732155387.540267 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387540267 |
1732155387540267 |
1732155387540267.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
252 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
None |
1732155387.527280 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
252 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
252 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
None |
1732155387.540267 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
253 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
None |
1732155387.527280 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
253 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
253 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
None |
1732155387.540267 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
254 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
None |
1732155387.527280 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
254 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
254 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
None |
1732155387.540267 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
255 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
None |
1732155387.527280 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387527280 |
1732155387527280 |
1732155387527280.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
255 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
None |
1732155387.544140 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387544140 |
1732155387544140 |
1732155387544140.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
255 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
None |
1732155387.540267 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387540267 |
1732155387540267 |
1732155387540267.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
256 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.514643 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.514643 |
1732155387.515708 |
None |
1732155387.515708 |
1065.0000 |
1065 |
1065 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387515708 |
1732155387515708 |
1732155387515708.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
257 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
None |
1732155387.515708 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
258 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
None |
1732155387.515708 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
259 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
None |
1732155387.515708 |
1732155387.515708 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
260 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
260 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
260 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
261 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
261 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
261 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
262 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
262 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
262 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
263 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
263 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
263 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
264 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
265 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
266 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
267 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
268 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
271 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
272 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
5 |
273 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.422451 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155388.422451 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
3 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
3 |
3 |
3.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
6 |
274 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155387.832622 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
589829.0000 |
589829 |
589829 |
140 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
7 |
275 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1732155387.832622 |
1732155388.422451 |
1643333.0000 |
1643333 |
1643333 |
589829.0000 |
589829 |
589829 |
140 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
276 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
277 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
116940.0000 |
116940 |
116940 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
278 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
279 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.695722 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
19960.0000 |
19960 |
19960 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
280 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.678841 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
281 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.677786 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
1055.0000 |
1055 |
1055 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387677786 |
1732155387677786 |
1732155387677786.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
282 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
None |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387636180 |
1732155387636180 |
1732155387636180.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
282 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
None |
1732155387.656650 |
66198.0000 |
66198 |
66198 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387656650 |
1732155387656650 |
1732155387656650.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
282 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387677786 |
1732155387677786 |
1732155387677786.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
283 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
None |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
283 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
None |
1732155387.656650 |
66198.0000 |
66198 |
66198 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
283 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
284 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
None |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
284 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
None |
1732155387.656650 |
66198.0000 |
66198 |
66198 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
284 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
285 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.657773 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
1732155387.657773 |
1732155387.657773 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
165 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
285 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
1732155387.636180 |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
285 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.637479 |
2024-11-21 10:16:27.637479 |
1732155387.590452 |
1732155387.656650 |
1732155387.637479 |
1732155387.637479 |
66198.0000 |
66198 |
66198 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
286 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
1732155387.607622 |
1732155387.609735 |
66198.0000 |
66198 |
66198 |
2113.0000 |
2113 |
2113 |
1 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
286 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
1732155387.600230 |
1732155387.635134 |
38038.0000 |
38038 |
38038 |
34904.0000 |
34904 |
34904 |
5 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
286 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.631404 |
94771.0000 |
94771 |
94771 |
48389.0000 |
48389 |
48389 |
279 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
287 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.591529 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
1732155387.591529 |
1732155387.609735 |
66198.0000 |
66198 |
66198 |
18206.0000 |
18206 |
18206 |
489 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387609735 |
1732155387609735 |
1732155387609735.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
287 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
1732155387.598142 |
1732155387.635134 |
38038.0000 |
38038 |
38038 |
36992.0000 |
36992 |
36992 |
489 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387635134 |
1732155387635134 |
1732155387635134.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
287 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.631404 |
94771.0000 |
94771 |
94771 |
48389.0000 |
48389 |
48389 |
489 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387631404 |
1732155387631404 |
1732155387631404.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
288 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.571685 |
1732155387.566350 |
1732155387.571685 |
1732155387.570608 |
1732155387.571685 |
5335.0000 |
5335 |
5335 |
1077.0000 |
1077 |
1077 |
489 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387571685 |
1732155387571685 |
1732155387571685.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
289 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
1732155387.570608 |
1732155387.570608 |
5335.0000 |
5335 |
5335 |
0.0000 |
0 |
0 |
489 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
46 |
46 |
46.0000 |
4096 |
4096 |
4096.0000 |
547 |
547 |
547.0000 |
547 |
547 |
547.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
290 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.568487 |
2024-11-21 10:16:27.569551 |
1732155387.566350 |
1732155387.571685 |
1732155387.568487 |
1732155387.569551 |
5335.0000 |
5335 |
5335 |
1064.0000 |
1064 |
1064 |
547 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
76256 |
76256 |
76256.0000 |
547 |
547 |
547.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
291 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.569551 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
1732155387.569551 |
1732155387.570608 |
5335.0000 |
5335 |
5335 |
1057.0000 |
1057 |
1057 |
15378 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
2861568 |
2861568 |
2861568.0000 |
15552 |
15552 |
15552.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
292 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
1732155387.607622 |
1732155387.609735 |
66198.0000 |
66198 |
66198 |
2113.0000 |
2113 |
2113 |
1 |
0.0000 |
489 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1960 |
1960 |
1960.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
292 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
1732155387.600230 |
1732155387.635134 |
38038.0000 |
38038 |
38038 |
34904.0000 |
34904 |
34904 |
5 |
0.0000 |
489 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1470 |
1470 |
1470.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
292 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.631404 |
94771.0000 |
94771 |
94771 |
48389.0000 |
48389 |
48389 |
279 |
0.0000 |
489 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1470 |
1470 |
1470.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
293 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
1732155387.607622 |
1732155387.609735 |
66198.0000 |
66198 |
66198 |
2113.0000 |
2113 |
2113 |
1 |
0.0000 |
1959 |
10.1.250.161 |
2882 |
14243 |
14243 |
14243.0000 |
284064 |
284064 |
284064.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
293 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
1732155387.600230 |
1732155387.635134 |
38038.0000 |
38038 |
38038 |
34904.0000 |
34904 |
34904 |
5 |
0.0000 |
1469 |
10.1.250.160 |
2882 |
61062 |
61062 |
61062.0000 |
1675072 |
1675072 |
1675072.0000 |
5 |
5 |
5.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
293 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
1732155387.583015 |
1732155387.631404 |
94771.0000 |
94771 |
94771 |
48389.0000 |
48389 |
48389 |
279 |
0.0000 |
1469 |
10.1.250.157 |
2882 |
228287 |
228287 |
228287.0000 |
82069632 |
82069632 |
82069632.0000 |
279 |
279 |
279.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
294 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.657773 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
1732155387.657773 |
1732155387.657773 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
165 |
None |
279 |
10.1.250.157 |
2882 |
1674842 |
1674842 |
1674842.0000 |
139459 |
139459 |
139459.0000 |
279 |
279 |
279.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
294 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
1732155387.636180 |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
0.0000 |
0 |
0 |
2 |
None |
5 |
10.1.250.160 |
2882 |
89367 |
89367 |
89367.0000 |
2492 |
2492 |
2492.0000 |
5 |
5 |
5.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
294 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.637479 |
2024-11-21 10:16:27.637479 |
1732155387.590452 |
1732155387.656650 |
1732155387.637479 |
1732155387.637479 |
66198.0000 |
66198 |
66198 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.161 |
2882 |
18095 |
18095 |
18095.0000 |
500 |
500 |
500.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
295 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
None |
1732155387.636180 |
39099.0000 |
39099 |
39099 |
None |
None |
None |
0 |
None |
2 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
741200 |
741200 |
741200.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
295 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
None |
1732155387.656650 |
66198.0000 |
66198 |
66198 |
None |
None |
None |
0 |
None |
1 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
370760 |
370760 |
370760.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
295 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
1 |
None |
165 |
10.1.250.157 |
2882 |
32816 |
32816 |
32816.0000 |
61161160 |
61161160 |
61161160.0000 |
165 |
165 |
165.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
296 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
None |
1732155387.598142 |
1732155387.637241 |
None |
None |
39099.0000 |
39099 |
39099 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
296 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
None |
1732155387.590452 |
1732155387.656650 |
None |
None |
66198.0000 |
66198 |
66198 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
296 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
1732155387.677786 |
1732155387.677786 |
94771.0000 |
94771 |
94771 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
390 |
390 |
390.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
297 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1732155387.678841 |
1732155387.678841 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
298 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.695722 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
19960.0000 |
19960 |
19960 |
1 |
0.0000 |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
507 |
507 |
507.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
299 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
300 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.714628 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1732155387.714628 |
1732155387.715682 |
1642276.0000 |
1642276 |
1642276 |
1054.0000 |
1054 |
1054 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387715682 |
1732155387715682 |
1732155387715682.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
301 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387716014 |
1732155387716014 |
1732155387716014.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
302 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
1732155387.716014 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
303 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.715682 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
116940.0000 |
116940 |
116940 |
1 |
0.0000 |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
16224 |
16224 |
16224.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
304 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
305 |
PHY_VEC_MERGE_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
306 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
307 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
308 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1732155387.831566 |
1732155387.831566 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
309 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1732155387.814676 |
1732155387.814676 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
310 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
311 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
312 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
313 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1732155387.778848 |
1732155387.778848 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
314 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1732155387.777793 |
1732155387.777793 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
315 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1732155387.760960 |
1732155387.760960 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
316 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.743060 |
2024-11-21 10:16:27.743060 |
1732155386.782285 |
1732155388.424561 |
1732155387.743060 |
1732155387.743060 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
291872 |
291872 |
291872.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
317 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1732155387.760960 |
1732155387.760960 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
498 |
498 |
498.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
318 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1732155387.777793 |
1732155387.777793 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
370760 |
370760 |
370760.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
319 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1732155387.778848 |
1732155387.778848 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
320 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
321 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
16224 |
16224 |
16224.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
322 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1732155387.795715 |
1732155387.795715 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
323 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1732155387.814676 |
1732155387.814676 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
18450 |
18450 |
18450.0000 |
130528 |
130528 |
130528.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
324 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1732155387.831566 |
1732155387.831566 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
387 |
387 |
387.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
325 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
None |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
15152 |
15152 |
15152.0000 |
131008 |
131008 |
131008.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
326 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
327 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
112 |
112 |
112.0000 |
8192 |
8192 |
8192.0000 |
1268 |
1268 |
1268.0000 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
328 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1268 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
40576 |
40576 |
40576.0000 |
1268 |
1268 |
1268.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
329 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
330 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1732155387.832622 |
1732155387.832622 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
331 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
332 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1732155387.942064 |
1732155387.942064 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
333 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1732155387.912557 |
1732155387.912557 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
334 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.887349 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
335 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.865246 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.865246 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
22103.0000 |
22103 |
22103 |
81 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387887349 |
1732155387887349 |
1732155387887349.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
336 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.870300 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.870300 |
11733.0000 |
11733 |
11733 |
1057.0000 |
1057 |
1057 |
81 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387870300 |
1732155387870300 |
1732155387870300.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
337 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.869243 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
338 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.867090 |
2024-11-21 10:16:27.867090 |
1732155387.858567 |
1732155387.870300 |
1732155387.867090 |
1732155387.867090 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
339 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
1732155387.869243 |
1732155387.869243 |
11733.0000 |
11733 |
11733 |
0.0000 |
0 |
0 |
81 |
None |
81 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
41060 |
41060 |
41060.0000 |
81 |
81 |
81.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
340 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.887349 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
None |
81 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
341 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.886290 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1732155387.886290 |
1732155387.887349 |
1642276.0000 |
1642276 |
1642276 |
1059.0000 |
1059 |
1059 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387887349 |
1732155387887349 |
1732155387887349.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
342 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387887174 |
1732155387887174 |
1732155387887174.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
343 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
1732155387.887174 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
344 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1732155387.912557 |
1732155387.912557 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
None |
81 |
10.1.250.157 |
2882 |
234414 |
234414 |
234414.0000 |
13141440 |
13141440 |
13141440.0000 |
159 |
159 |
159.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
345 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1732155387.942064 |
1732155387.942064 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
60 |
None |
60 |
10.1.250.157 |
2882 |
36775 |
36775 |
36775.0000 |
53078520 |
53078520 |
53078520.0000 |
60 |
60 |
60.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
346 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.943119 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
1044.0000 |
1044 |
1044 |
60 |
0.0000 |
60 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
24314 |
24314 |
24314.0000 |
60 |
60 |
60.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
347 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
348 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.944163 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1732155387.944163 |
1732155387.944163 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
349 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
350 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
None |
1732155388.012563 |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388012563 |
1732155388012563 |
1732155388012563.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
351 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.016696 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.016696 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388016696 |
1732155388016696 |
1732155388016696.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
352 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
353 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
354 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
355 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
356 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
357 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
None |
1732155388.015635 |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388015635 |
1732155388015635 |
1732155388015635.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
358 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
None |
1732155387.977842 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387977842 |
1732155387977842 |
1732155387977842.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
358 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
None |
1732155387.997597 |
1062.0000 |
1062 |
1062 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387997597 |
1732155387997597 |
1732155387997597.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
358 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.989299 |
1732155387.988243 |
1732155387.989299 |
None |
1732155387.989299 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387989299 |
1732155387989299 |
1732155387989299.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
359 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
None |
1732155387.977842 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
359 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
None |
1732155387.997597 |
1062.0000 |
1062 |
1062 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
359 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
None |
1732155387.988243 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
1732155387.988243 |
1732155387.988243 |
1056.0000 |
1056 |
1056 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155387988243 |
1732155387988243 |
1732155387988243.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
1732155387.976787 |
1732155387.977842 |
1055.0000 |
1055 |
1055 |
1055.0000 |
1055 |
1055 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387977842 |
1732155387977842 |
1732155387977842.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
1732155387.996535 |
1732155387.997597 |
1062.0000 |
1062 |
1062 |
1062.0000 |
1062 |
1062 |
1 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155387997597 |
1732155387997597 |
1732155387997597.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
361 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155387964174 |
1732155387964174 |
1732155387964174.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
362 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
363 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.954696 |
1732155387.954696 |
1732155387.964174 |
1732155387.954696 |
1732155387.954696 |
9478.0000 |
9478 |
9478 |
0.0000 |
0 |
0 |
160 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
205392 |
205392 |
205392.0000 |
160 |
160 |
160.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
364 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
1732155387.957843 |
1732155387.964174 |
9478.0000 |
9478 |
9478 |
6331.0000 |
6331 |
6331 |
1 |
0.0000 |
160 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
41108480 |
41108480 |
41108480.0000 |
2795 |
2795 |
2795.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
365 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
None |
1732155387.977842 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
6 |
6 |
6.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
365 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
None |
1732155387.997597 |
1062.0000 |
1062 |
1062 |
None |
None |
None |
0 |
None |
1 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
6 |
6 |
6.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
365 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
None |
1732155387.988243 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
1 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
366 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
None |
1732155387.977842 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
5 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
291872 |
291872 |
291872.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
366 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
None |
1732155387.997597 |
1062.0000 |
1062 |
1062 |
None |
None |
None |
0 |
None |
5 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
366 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
None |
1732155387.988243 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
7 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
367 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
368 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
369 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
370 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
371 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
None |
None |
1061.0000 |
1061 |
1061 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
372 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
373 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
None |
None |
1642276.0000 |
1642276 |
1642276 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
376 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.354650 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
79 |
79 |
79.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
377 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.184012 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
170638.0000 |
170638 |
170638 |
80 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
378 |
PHY_MERGE_UNION |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.184012 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
170638.0000 |
170638 |
170638 |
80 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
379 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.182958 |
2024-11-21 10:16:28.184012 |
1732155386.782285 |
1732155388.425618 |
1732155388.182958 |
1732155388.184012 |
1643333.0000 |
1643333 |
1643333 |
1054.0000 |
1054 |
1054 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
79 |
79 |
79.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
380 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
50 |
50 |
50.0000 |
4096 |
4096 |
4096.0000 |
649 |
649 |
649.0000 |
649 |
649 |
649.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
381 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.032526 |
2024-11-21 10:16:28.032526 |
1732155386.782285 |
1732155388.424561 |
1732155388.032526 |
1732155388.032526 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
649 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388032526 |
1732155388032526 |
1732155388032526.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
382 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
1732155388.035782 |
1732155388.036842 |
1732155388.035782 |
1732155388.036842 |
1060.0000 |
1060 |
1060 |
1060.0000 |
1060 |
1060 |
649 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388036842 |
1732155388036842 |
1732155388036842.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
383 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.035782 |
1732155388.035782 |
1732155388.036842 |
1732155388.035782 |
1732155388.035782 |
1060.0000 |
1060 |
1060 |
0.0000 |
0 |
0 |
649 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
169370 |
169370 |
169370.0000 |
655 |
655 |
655.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
384 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
385 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1732155388.151314 |
1732155388.151314 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
386 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1732155388.134500 |
1732155388.134500 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
387 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.132391 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1732155388.132391 |
1732155388.133446 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
7 |
7 |
7.0000 |
512 |
512 |
512.0000 |
79 |
79 |
79.0000 |
79 |
79 |
79.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
388 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1732155388.130281 |
1732155388.130281 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
389 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
112 |
112 |
112.0000 |
8192 |
8192 |
8192.0000 |
1268 |
1268 |
1268.0000 |
1268 |
1268 |
1268.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
390 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1268 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
162304 |
162304 |
162304.0000 |
1268 |
1268 |
1268.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
391 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
392 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
321 |
321 |
321.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
393 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
394 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
395 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
396 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
4 |
4 |
4.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
397 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1732155388.033584 |
1732155388.033584 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
90 |
90 |
90.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
398 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
399 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.086025 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
400 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.066135 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.066135 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
19890.0000 |
19890 |
19890 |
81 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388086025 |
1732155388086025 |
1732155388086025.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
401 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388069747 |
1732155388069747 |
1732155388069747.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
402 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
32 |
32 |
32.0000 |
2048 |
2048 |
2048.0000 |
320 |
320 |
320.0000 |
320 |
320 |
320.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
403 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.061245 |
1732155388.061245 |
1732155388.069747 |
1732155388.061245 |
1732155388.061245 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
320 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
147713 |
147713 |
147713.0000 |
320 |
320 |
320.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
404 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
1732155388.069747 |
1732155388.069747 |
8502.0000 |
8502 |
8502 |
0.0000 |
0 |
0 |
81 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
405 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.086025 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
81 |
None |
81 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
406 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.084971 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1732155388.084971 |
1732155388.086025 |
1642276.0000 |
1642276 |
1642276 |
1054.0000 |
1054 |
1054 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388086025 |
1732155388086025 |
1732155388086025.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
407 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
1732155388.085651 |
1732155388.086707 |
1732155388.085651 |
1732155388.086707 |
1056.0000 |
1056 |
1056 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155388086707 |
1732155388086707 |
1732155388086707.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
408 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.085651 |
1732155388.085651 |
1732155388.086707 |
1732155388.085651 |
1732155388.085651 |
1056.0000 |
1056 |
1056 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
409 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1732155388.105004 |
1732155388.105004 |
1642276.0000 |
1642276 |
1642276 |
0.0000 |
0 |
0 |
79 |
None |
81 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
13141440 |
13141440 |
13141440.0000 |
159 |
159 |
159.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
410 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1732155388.106058 |
1732155388.107113 |
1643333.0000 |
1643333 |
1643333 |
1055.0000 |
1055 |
1055 |
79 |
0.0000 |
79 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
29175 |
29175 |
29175.0000 |
79 |
79 |
79.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
411 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1732155388.130281 |
1732155388.130281 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
8 |
None |
79 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
6957056 |
6957056 |
6957056.0000 |
8 |
8 |
8.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
412 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.131335 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1732155388.131335 |
1732155388.133446 |
1643333.0000 |
1643333 |
1643333 |
2111.0000 |
2111 |
2111 |
37334 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
13551309 |
13551309 |
13551309.0000 |
37334 |
37334 |
37334.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
413 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1732155388.134500 |
1732155388.134500 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
67 |
None |
79 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
10194 |
10194 |
10194.0000 |
79 |
79 |
79.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
414 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1732155388.151314 |
1732155388.151314 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
79 |
None |
79 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
79 |
79 |
79.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
415 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1732155388.181902 |
1732155388.182958 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
56 |
0.0000 |
79 |
10.1.250.157 |
2882 |
18435 |
18435 |
18435.0000 |
69888800 |
69888800 |
69888800.0000 |
56 |
56 |
56.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
416 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1732155388.353594 |
1732155388.354650 |
1643333.0000 |
1643333 |
1643333 |
1056.0000 |
1056 |
1056 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
1024 |
1024 |
1024.0000 |
1 |
1 |
1.0000 |
2048 |
2048 |
2048.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
417 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.353594 |
1732155386.782285 |
1732155388.425618 |
1732155388.353594 |
1732155388.353594 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
418 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.782285 |
1732155388.425618 |
1732155388.336758 |
1732155388.336758 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
419 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.310444 |
2024-11-21 10:16:28.310444 |
1732155386.782285 |
1732155388.425618 |
1732155388.310444 |
1732155388.310444 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
420 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.293583 |
2024-11-21 10:16:28.293583 |
1732155386.782285 |
1732155388.425618 |
1732155388.293583 |
1732155388.293583 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
421 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.292527 |
2024-11-21 10:16:28.292527 |
1732155386.782285 |
1732155388.425618 |
1732155388.292527 |
1732155388.292527 |
1643333.0000 |
1643333 |
1643333 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
422 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.276681 |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
1732155388.276681 |
1732155388.276681 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
423 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
424 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
425 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
426 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
None |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
321 |
321 |
321.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
427 |
PHY_SORT |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
428 |
PHY_VEC_MERGE_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
429 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
71542.0000 |
71542 |
71542 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
90 |
90 |
90.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
23 |
430 |
PHY_SORT |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
24 |
431 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
432 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.184012 |
1732155386.783339 |
1732155388.425618 |
1732155388.184012 |
1732155388.184012 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
25 |
433 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
434 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
435 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.232434 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.232434 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
22064.0000 |
22064 |
22064 |
1 |
0.0000 |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388254498 |
1732155388254498 |
1732155388254498.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
436 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.235351 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
1057.0000 |
1057 |
1057 |
1 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388236408 |
1732155388236408 |
1732155388236408.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
29 |
437 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.235351 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
1057.0000 |
1057 |
1057 |
1 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
1 |
1 |
1.0000 |
256 |
256 |
256.0000 |
35 |
35 |
35.0000 |
35 |
35 |
35.0000 |
0.0000 |
0.0000 |
0.0000 |
30 |
438 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.213066 |
2024-11-21 10:16:28.214128 |
1732155388.206693 |
1732155388.236408 |
1732155388.213066 |
1732155388.214128 |
29715.0000 |
29715 |
29715 |
1062.0000 |
1062 |
1062 |
35 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
220800 |
220800 |
220800.0000 |
1485 |
1485 |
1485.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
30 |
439 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.234290 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
2118.0000 |
2118 |
2118 |
316 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31 |
440 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.228949 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.228949 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
1131.0000 |
1131 |
1131 |
484 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
46 |
46 |
46.0000 |
4096 |
4096 |
4096.0000 |
547 |
547 |
547.0000 |
547 |
547 |
547.0000 |
0.0000 |
0.0000 |
0.0000 |
32 |
441 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.216222 |
2024-11-21 10:16:28.217278 |
1732155388.206693 |
1732155388.236408 |
1732155388.216222 |
1732155388.217278 |
29715.0000 |
29715 |
29715 |
1056.0000 |
1056 |
1056 |
547 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
76256 |
76256 |
76256.0000 |
547 |
547 |
547.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
32 |
442 |
PHY_VEC_SUBPLAN_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.221508 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
8572.0000 |
8572 |
8572 |
14021 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
33 |
443 |
PHY_VEC_HASH_GROUP_BY |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
1732155388.221508 |
1732155388.230080 |
29715.0000 |
29715 |
29715 |
8572.0000 |
8572 |
8572 |
14021 |
0.0000 |
0 |
10.1.250.160 |
2882 |
8192 |
8192 |
8192.0000 |
14021 |
14021 |
14021.0000 |
32768 |
32768 |
32768.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
34 |
444 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.217278 |
2024-11-21 10:16:28.220452 |
1732155388.206693 |
1732155388.236408 |
1732155388.217278 |
1732155388.220452 |
29715.0000 |
29715 |
29715 |
3174.0000 |
3174 |
3174 |
15365 |
0.0000 |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
2861568 |
2861568 |
2861568.0000 |
15552 |
15552 |
15552.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
31 |
445 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
1732155388.234290 |
1732155388.236408 |
29715.0000 |
29715 |
29715 |
2118.0000 |
2118 |
2118 |
316 |
0.0000 |
484 |
10.1.250.160 |
2882 |
18850 |
18850 |
18850.0000 |
239230 |
239230 |
239230.0000 |
484 |
484 |
484.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
27 |
446 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
28 |
447 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1732155388.254498 |
1732155388.254498 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388254498 |
1732155388254498 |
1732155388254498.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
29 |
448 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
1732155388.254495 |
1732155388.255550 |
1732155388.254495 |
1732155388.255550 |
1055.0000 |
1055 |
1055 |
1055.0000 |
1055 |
1055 |
1 |
0.0000 |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155388255550 |
1732155388255550 |
1732155388255550.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
30 |
449 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.254495 |
1732155388.254495 |
1732155388.255550 |
1732155388.254495 |
1732155388.254495 |
1055.0000 |
1055 |
1055 |
0.0000 |
0 |
0 |
1 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
26 |
450 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1732155388.255554 |
1732155388.255554 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
393 |
393 |
393.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
451 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
507 |
507 |
507.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
452 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1732155388.275622 |
1732155388.275622 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
130 |
130 |
130.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
453 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.276681 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
5970 |
5970 |
5970.0000 |
60840 |
60840 |
60840.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
454 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.292527 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.292527 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
455 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.293583 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.293583 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
16224 |
16224 |
16224.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
456 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.310444 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.310444 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
88064 |
88064 |
88064.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
457 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.783339 |
1732155388.425618 |
1732155388.336758 |
1732155388.336758 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
1 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
884680 |
884680 |
884680.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
458 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.353594 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.353594 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
1 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
459 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
460 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
461 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
462 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
463 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
464 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
465 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
466 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
8 |
8 |
8.0000 |
2 |
2 |
2.0000 |
2 |
2 |
2.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
467 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.783339 |
1732155388.425618 |
1732155388.354650 |
1732155388.354650 |
1642279.0000 |
1642279 |
1642279 |
0.0000 |
0 |
0 |
2 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
150 |
150 |
150.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
468 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
469 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
470 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
471 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.356728 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
13551309 |
13551309 |
13551309.0000 |
37334 |
37334 |
37334.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
472 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
473 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
474 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
475 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
476 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
477 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
478 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
479 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
480 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
483 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
484 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
485 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
486 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
487 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
488 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
489 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
490 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
491 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.375117 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388375117 |
1732155388375117 |
1732155388375117.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
492 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388379279 |
1732155388379279 |
1732155388379279.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
493 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
494 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
495 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
None |
1732155388.379279 |
1059.0000 |
1059 |
1059 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
496 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
None |
1732155388.379279 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
497 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
None |
1732155388.379279 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
498 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
499 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
500 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
501 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
502 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
503 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
504 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
505 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
506 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
509 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
510 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
8 |
511 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
512 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
513 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
514 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
515 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
516 |
PHY_VEC_HASH_JOIN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
2 |
2 |
2.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
517 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
None |
1732155388.422451 |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388422451 |
1732155388422451 |
1732155388422451.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
518 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.410848 |
1732155388.409793 |
1732155388.410848 |
None |
1732155388.410848 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388410848 |
1732155388410848 |
1732155388410848.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
518 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.426933 |
1732155388.425877 |
1732155388.426933 |
None |
1732155388.426933 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388426933 |
1732155388426933 |
1732155388426933.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
15 |
518 |
PHY_PX_REDUCE_TRANSMIT |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
None |
1732155388.418792 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155388418792 |
1732155388418792 |
1732155388418792.0000 |
1 |
1 |
1.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
519 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
None |
1732155388.409793 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
519 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
None |
1732155388.425877 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
16 |
519 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
None |
1732155388.418792 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
520 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
None |
1732155388.409793 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
520 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
None |
1732155388.425877 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
520 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
None |
1732155388.418792 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
521 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
None |
1732155388.409793 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
521 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
None |
1732155388.425877 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
521 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
None |
1732155388.418792 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
522 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
None |
1732155388.409793 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
1732155388409793 |
1732155388409793 |
1732155388409793.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
522 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
None |
1732155388.425877 |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388425877 |
1732155388425877 |
1732155388425877.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
522 |
PHY_PX_FIFO_RECEIVE |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
None |
1732155388.418792 |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
1732155388418792 |
1732155388418792 |
1732155388418792.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
523 |
PHY_PX_DIST_TRANSMIT |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
1732155388400444 |
1732155388400444 |
1732155388400444.0000 |
3 |
3 |
3.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
21 |
524 |
PHY_NESTED_LOOP_JOIN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
525 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
None |
1732155388.400444 |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
22 |
526 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
None |
1732155388.399389 |
1732155388.400444 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
527 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
527 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
None |
None |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
19 |
527 |
PHY_VEC_GRANULE_ITERATOR |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
528 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
528 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
None |
None |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
20 |
528 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
529 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
529 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
None |
None |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
18 |
529 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
530 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
None |
None |
1055.0000 |
1055 |
1055 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
530 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
None |
None |
1056.0000 |
1056 |
1056 |
None |
None |
None |
0 |
None |
0 |
10.1.250.160 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
17 |
530 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
None |
None |
0.0000 |
0 |
0 |
None |
None |
None |
0 |
None |
0 |
10.1.250.161 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
14 |
531 |
PHY_VEC_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
13 |
532 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
533 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
11 |
534 |
PHY_VEC_MATERIAL |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
12 |
535 |
PHY_PX_FIFO_COORD |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
10 |
538 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
9 |
539 |
PHY_TABLE_SCAN |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
None |
None |
1642279.0000 |
1642279 |
1642279 |
None |
None |
None |
0 |
None |
0 |
10.1.250.157 |
2882 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
算子优先视图
机器优先视图
SQL_PLAN_MONITOR 详情
PLAN_DEPTH |
SVR_IP |
SVR_PORT |
PROCESS_NAME |
PLAN_LINE_ID |
PLAN_OPERATION |
OUTPUT_ROWS |
RESCAN_TIMES |
FIRST_REFRESH_TIME |
LAST_REFRESH_TIME |
FIRST_CHANGE_TIME |
LAST_CHANGE_TIME |
FIRST_REFRESH_TS |
LAST_REFRESH_TS |
REFRESH_TS |
FIRST_CHANGE_TS |
LAST_CHANGE_TS |
CHANGE_TS |
OTHERSTAT_1_ID |
OTHERSTAT_1_VALUE |
OTHERSTAT_2_ID |
OTHERSTAT_2_VALUE |
OTHERSTAT_3_ID |
OTHERSTAT_3_VALUE |
OTHERSTAT_4_ID |
OTHERSTAT_4_VALUE |
OTHERSTAT_5_ID |
OTHERSTAT_5_VALUE |
OTHERSTAT_6_ID |
OTHERSTAT_6_VALUE |
MY_DB_TIME |
MY_CPU_TIME |
MY_IO_TIME |
0 |
10.1.250.157 |
2882 |
687226 |
0 |
PHY_VEC_LIMIT |
3 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1.644390 |
1732155388.423506 |
1732155388.423506 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
1 |
10.1.250.157 |
2882 |
687226 |
1 |
PHY_VEC_SORT |
3 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1.644390 |
1732155388.423506 |
1732155388.423506 |
0.000000 |
29 |
3 |
30 |
1 |
31 |
1 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
2 |
10.1.250.157 |
2882 |
687226 |
2 |
PHY_VEC_HASH_GROUP_BY |
3 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:28.423506 |
1732155386.781228 |
1732155388.425618 |
1.644390 |
1732155388.423506 |
1732155388.423506 |
0.000000 |
11 |
1024 |
6 |
3 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
3 |
10.1.250.157 |
2882 |
687226 |
3 |
PHY_VEC_SUBPLAN_SCAN |
6 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1.644390 |
1732155387.540954 |
1732155388.422451 |
0.881497 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
4 |
10.1.250.157 |
2882 |
687226 |
4 |
PHY_VEC_HASH_UNION |
6 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:28.422451 |
1732155386.781228 |
1732155388.425618 |
1.644390 |
1732155387.540954 |
1732155388.422451 |
0.881497 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
5 |
10.1.250.157 |
2882 |
687226 |
5 |
PHY_VEC_HASH_GROUP_BY |
3 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.540954 |
2024-11-21 10:16:27.540954 |
1732155386.781228 |
1732155388.424561 |
1.643333 |
1732155387.540954 |
1732155387.540954 |
0.000000 |
11 |
1024 |
6 |
3 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
6 |
10.1.250.157 |
2882 |
687226 |
6 |
PHY_VEC_SUBPLAN_SCAN |
95 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1.643333 |
1732155387.131841 |
1732155387.539898 |
0.408057 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
7 |
10.1.250.157 |
2882 |
687226 |
7 |
PHY_MERGE_UNION |
95 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.539898 |
1732155386.781228 |
1732155388.424561 |
1.643333 |
1732155387.131841 |
1732155387.539898 |
0.408057 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
8 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
9 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
10 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
11 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
12 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
13 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:26.946452 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
1732155386.946452 |
None |
0 |
0 |
25 |
1732155386946452 |
24 |
3 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
369248 |
14 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
None |
1732155386.946452 |
None |
0 |
0 |
25 |
1732155386946452 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707090 |
14 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
None |
1732155386.889277 |
None |
0 |
0 |
25 |
1732155386889277 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.161 |
2882 |
354096 |
14 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.907957 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
None |
1732155386.907957 |
None |
0 |
0 |
25 |
1732155386907957 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
369248 |
15 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707090 |
15 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
None |
1732155386.889277 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.161 |
2882 |
354096 |
15 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
None |
1732155386.906903 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369248 |
16 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
None |
1732155386.946452 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707090 |
16 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
None |
1732155386.889277 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
354096 |
16 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
None |
1732155386.906903 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369248 |
17 |
PHY_NESTED_LOOP_JOIN |
148 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.919089 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.919089 |
1732155386.919089 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707090 |
17 |
PHY_NESTED_LOOP_JOIN |
3 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.888221 |
2024-11-21 10:16:26.888221 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
1732155386.888221 |
1732155386.888221 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354096 |
17 |
PHY_NESTED_LOOP_JOIN |
2 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.887701 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.887701 |
1732155386.887701 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369248 |
18 |
PHY_NESTED_LOOP_JOIN |
233 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.849618 |
1732155386.892787 |
0.043169 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707090 |
18 |
PHY_NESTED_LOOP_JOIN |
3 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
1732155386.862964 |
1732155386.886151 |
0.023187 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354096 |
18 |
PHY_NESTED_LOOP_JOIN |
3 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.852511 |
1732155386.866410 |
0.013899 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369248 |
19 |
PHY_PX_FIFO_RECEIVE |
340 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.845397 |
1732155386.892787 |
0.047390 |
0 |
0 |
25 |
1732155386892787 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707090 |
19 |
PHY_PX_FIFO_RECEIVE |
340 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.889277 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.889277 |
0.031615 |
1732155386.857662 |
1732155386.886151 |
0.028489 |
0 |
0 |
25 |
1732155386886151 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354096 |
19 |
PHY_PX_FIFO_RECEIVE |
340 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.849323 |
1732155386.866410 |
0.017087 |
0 |
0 |
25 |
1732155386866410 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707087 |
20 |
PHY_PX_DIST_TRANSMIT |
340 |
0 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
0.007417 |
1732155386.825723 |
1732155386.826788 |
0.001065 |
0 |
0 |
25 |
1732155386826788 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
707087 |
21 |
PHY_VEC_HASH_JOIN |
340 |
0 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.825723 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
0.007417 |
1732155386.825723 |
1732155386.826788 |
0.001065 |
1 |
0 |
2 |
0 |
3 |
41 |
4 |
2048 |
5 |
374 |
6 |
374 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
707087 |
22 |
PHY_TABLE_SCAN |
374 |
0 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.822553 |
2024-11-21 10:16:26.823609 |
1732155386.819371 |
1732155386.826788 |
0.007417 |
1732155386.822553 |
1732155386.823609 |
0.001056 |
36 |
19016 |
37 |
86784 |
38 |
374 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
707087 |
23 |
PHY_VEC_TABLE_SCAN |
15378 |
0 |
2024-11-21 10:16:26.819371 |
2024-11-21 10:16:26.826788 |
2024-11-21 10:16:26.824668 |
2024-11-21 10:16:26.826788 |
1732155386.819371 |
1732155386.826788 |
0.007417 |
1732155386.824668 |
1732155386.826788 |
0.002120 |
36 |
389305 |
37 |
2861568 |
38 |
15552 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369248 |
24 |
PHY_VEC_GRANULE_ITERATOR |
233 |
340 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.849618 |
1732155386.892787 |
0.043169 |
27 |
0 |
28 |
1023 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707090 |
24 |
PHY_VEC_GRANULE_ITERATOR |
3 |
340 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
1732155386.862964 |
1732155386.886151 |
0.023187 |
27 |
0 |
28 |
1023 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354096 |
24 |
PHY_VEC_GRANULE_ITERATOR |
3 |
340 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.852511 |
1732155386.866410 |
0.013899 |
27 |
0 |
28 |
1364 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
369248 |
25 |
PHY_TABLE_SCAN |
233 |
1022 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.849618 |
2024-11-21 10:16:26.892787 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.849618 |
1732155386.892787 |
0.043169 |
36 |
302447 |
37 |
66787104 |
38 |
233 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707090 |
25 |
PHY_TABLE_SCAN |
3 |
1022 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.862964 |
2024-11-21 10:16:26.886151 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
1732155386.862964 |
1732155386.886151 |
0.023187 |
36 |
49795 |
37 |
1022400 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
354096 |
25 |
PHY_TABLE_SCAN |
3 |
1363 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.852511 |
2024-11-21 10:16:26.866410 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.852511 |
1732155386.866410 |
0.013899 |
36 |
53785 |
37 |
752960 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369248 |
26 |
PHY_TABLE_SCAN |
148 |
233 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
2024-11-21 10:16:26.919089 |
2024-11-21 10:16:26.919089 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
1732155386.919089 |
1732155386.919089 |
0.000000 |
36 |
1961103 |
37 |
115872 |
38 |
233 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707090 |
26 |
PHY_TABLE_SCAN |
3 |
3 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
2024-11-21 10:16:26.888221 |
2024-11-21 10:16:26.888221 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
1732155386.888221 |
1732155386.888221 |
0.000000 |
36 |
53192 |
37 |
1495 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354096 |
26 |
PHY_TABLE_SCAN |
2 |
3 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
2024-11-21 10:16:26.887701 |
2024-11-21 10:16:26.887701 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
1732155386.887701 |
1732155386.887701 |
0.000000 |
36 |
51329 |
37 |
1490 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369248 |
27 |
PHY_TABLE_SCAN |
0 |
148 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
2024-11-21 10:16:26.946452 |
1732155386.845397 |
1732155386.946452 |
0.101055 |
None |
1732155386.946452 |
None |
36 |
64672 |
37 |
53935200 |
38 |
148 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707090 |
27 |
PHY_TABLE_SCAN |
0 |
3 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
2024-11-21 10:16:26.889277 |
1732155386.857662 |
1732155386.890334 |
0.032672 |
None |
1732155386.889277 |
None |
36 |
33462 |
37 |
1085040 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354096 |
27 |
PHY_TABLE_SCAN |
0 |
2 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
2024-11-21 10:16:26.906903 |
1732155386.849323 |
1732155386.907957 |
0.058634 |
None |
1732155386.906903 |
None |
36 |
16123 |
37 |
732440 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369248 |
28 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.845397 |
2024-11-21 10:16:26.946452 |
None |
None |
1732155386.845397 |
1732155386.946452 |
0.101055 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707090 |
28 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.857662 |
2024-11-21 10:16:26.890334 |
None |
None |
1732155386.857662 |
1732155386.890334 |
0.032672 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
354096 |
28 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.849323 |
2024-11-21 10:16:26.907957 |
None |
None |
1732155386.849323 |
1732155386.907957 |
0.058634 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
29 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
30 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
31 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
32 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
35 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
36 |
PHY_VEC_SUBPLAN_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
37 |
PHY_VEC_MERGE_GROUP_BY |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
38 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
39 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
40 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
41 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
42 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
43 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
44 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
45 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
46 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
47 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
48 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
49 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
50 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
51 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
52 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
53 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
54 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
55 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
56 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
57 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
58 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
59 |
PHY_VEC_MERGE_JOIN |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.131841 |
1732155387.131841 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
60 |
PHY_VEC_TABLE_SCAN |
1268 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.947508 |
None |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155386.947508 |
None |
None |
36 |
5128 |
37 |
40576 |
38 |
1268 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
61 |
PHY_SORT |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.130780 |
2024-11-21 10:16:27.130780 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.130780 |
1732155387.130780 |
0.000000 |
29 |
31 |
30 |
1 |
31 |
3 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
62 |
PHY_VEC_HASH_JOIN |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.129725 |
1732155387.129725 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
63 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:26.948565 |
2024-11-21 10:16:26.948565 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155386.948565 |
1732155386.948565 |
0.000000 |
36 |
505 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
64 |
PHY_NESTED_LOOP_JOIN |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.129725 |
1732155387.129725 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
65 |
PHY_NESTED_LOOP_JOIN |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.128669 |
1732155387.128669 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
66 |
PHY_NESTED_LOOP_JOIN |
31 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.097014 |
1732155387.097014 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
67 |
PHY_NESTED_LOOP_JOIN |
69 |
0 |
2024-11-21 10:16:26.781228 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.781228 |
1732155388.423506 |
1.642278 |
1732155387.075907 |
1732155387.075907 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
68 |
PHY_PX_FIFO_COORD |
69 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.053788 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.053788 |
1732155387.075907 |
0.022119 |
0 |
0 |
25 |
1732155387075907 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
805693 |
69 |
PHY_PX_REDUCE_TRANSMIT |
69 |
0 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
0.082301 |
1732155387.058465 |
1732155387.058465 |
0.000000 |
0 |
0 |
25 |
1732155387058465 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805693 |
70 |
PHY_NESTED_LOOP_JOIN |
69 |
0 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
0.082301 |
1732155387.058465 |
1732155387.058465 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805693 |
71 |
PHY_TABLE_SCAN |
69 |
0 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.056350 |
2024-11-21 10:16:27.056350 |
1732155386.976164 |
1732155387.058465 |
0.082301 |
1732155387.056350 |
1732155387.056350 |
0.000000 |
36 |
18314 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805693 |
72 |
PHY_TABLE_SCAN |
69 |
69 |
2024-11-21 10:16:26.976164 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
2024-11-21 10:16:27.058465 |
1732155386.976164 |
1732155387.058465 |
0.082301 |
1732155387.058465 |
1732155387.058465 |
0.000000 |
36 |
0 |
37 |
34987 |
38 |
69 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
73 |
PHY_VEC_MATERIAL |
69 |
69 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.075907 |
1732155387.075907 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
74 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.075907 |
2024-11-21 10:16:27.075907 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.075907 |
1732155387.075907 |
0.000000 |
0 |
0 |
25 |
1732155387075907 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354095 |
75 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
0.001059 |
1732155387.076530 |
1732155387.076530 |
0.000000 |
0 |
0 |
25 |
1732155387076530 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354095 |
76 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:27.075471 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
2024-11-21 10:16:27.076530 |
1732155387.075471 |
1732155387.076530 |
0.001059 |
1732155387.076530 |
1732155387.076530 |
0.000000 |
36 |
12638 |
37 |
494 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
77 |
PHY_TABLE_SCAN |
31 |
69 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.097014 |
2024-11-21 10:16:27.097014 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.097014 |
1732155387.097014 |
0.000000 |
36 |
121381 |
37 |
10035648 |
38 |
101 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
78 |
PHY_TABLE_SCAN |
31 |
31 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.128669 |
2024-11-21 10:16:27.128669 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.128669 |
1732155387.128669 |
0.000000 |
36 |
236007 |
37 |
24705920 |
38 |
31 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
79 |
PHY_TABLE_SCAN |
31 |
31 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.129725 |
2024-11-21 10:16:27.129725 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.129725 |
1732155387.129725 |
0.000000 |
36 |
0 |
37 |
12543 |
38 |
31 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
80 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
None |
1732155387.213755 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
81 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.131841 |
2024-11-21 10:16:27.131841 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.131841 |
1732155387.131841 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
82 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
None |
1732155387.213755 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
83 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
2024-11-21 10:16:27.213755 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
None |
1732155387.213755 |
None |
0 |
0 |
25 |
1732155387213755 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.160 |
2882 |
805697 |
84 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
None |
1732155387.217225 |
None |
0 |
0 |
25 |
1732155387217225 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.160 |
2882 |
805697 |
85 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
None |
1732155387.217225 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.160 |
2882 |
805697 |
86 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
None |
1732155387.217225 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
805697 |
87 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
None |
1732155387.217225 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
805697 |
88 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
None |
2024-11-21 10:16:27.217225 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
None |
1732155387.217225 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
64 |
5 |
9 |
6 |
9 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
805697 |
89 |
PHY_NESTED_LOOP_JOIN |
9 |
0 |
2024-11-21 10:16:27.206686 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.206686 |
1732155387.218282 |
0.011596 |
1732155387.207746 |
1732155387.207746 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805697 |
90 |
PHY_PX_FIFO_RECEIVE |
9 |
0 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.217225 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.217225 |
0.009479 |
1732155387.207746 |
1732155387.207746 |
0.000000 |
0 |
0 |
25 |
1732155387207746 |
24 |
0 |
0 |
0 |
10 |
2 |
9 |
2 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687238 |
91 |
PHY_PX_DIST_TRANSMIT |
9 |
0 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
1732155387.170705 |
1732155387.171759 |
0.001054 |
0 |
0 |
25 |
1732155387171759 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707086 |
91 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
None |
1732155387.187656 |
None |
0 |
0 |
25 |
1732155387187656 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
582635 |
91 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.179658 |
1732155387.178622 |
1732155387.179658 |
0.001036 |
None |
1732155387.179658 |
None |
0 |
0 |
25 |
1732155387179658 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687238 |
92 |
PHY_NESTED_LOOP_JOIN |
9 |
0 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
1732155387.170705 |
1732155387.171759 |
0.001054 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707086 |
92 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
None |
1732155387.187656 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
582635 |
92 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
0.001036 |
None |
1732155387.178622 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687238 |
93 |
PHY_PX_FIFO_RECEIVE |
10 |
0 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
0 |
0 |
25 |
1732155387171759 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707086 |
93 |
PHY_PX_FIFO_RECEIVE |
10 |
0 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
0 |
0 |
25 |
1732155387187656 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
582635 |
93 |
PHY_PX_FIFO_RECEIVE |
10 |
0 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
0.001036 |
1732155387.178622 |
1732155387.178622 |
0.000000 |
0 |
0 |
25 |
1732155387178622 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
369244 |
94 |
PHY_PX_DIST_TRANSMIT |
10 |
0 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
0.008435 |
1732155387.150749 |
1732155387.153911 |
0.003162 |
0 |
0 |
25 |
1732155387153911 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
369244 |
95 |
PHY_NESTED_LOOP_JOIN |
10 |
0 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
0.008435 |
1732155387.150749 |
1732155387.153911 |
0.003162 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
369244 |
96 |
PHY_VEC_TABLE_SCAN |
78 |
0 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.145476 |
1732155387.145476 |
1732155387.153911 |
0.008435 |
1732155387.145476 |
1732155387.145476 |
0.000000 |
36 |
0 |
37 |
205392 |
38 |
78 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
369244 |
97 |
PHY_TABLE_SCAN |
10 |
78 |
2024-11-21 10:16:27.145476 |
2024-11-21 10:16:27.153911 |
2024-11-21 10:16:27.150749 |
2024-11-21 10:16:27.153911 |
1732155387.145476 |
1732155387.153911 |
0.008435 |
1732155387.150749 |
1732155387.153911 |
0.003162 |
36 |
31501 |
37 |
20040384 |
38 |
2176 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687238 |
98 |
PHY_VEC_GRANULE_ITERATOR |
9 |
10 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
1732155387.170705 |
1732155387.171759 |
0.001054 |
27 |
0 |
28 |
33 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707086 |
98 |
PHY_VEC_GRANULE_ITERATOR |
0 |
10 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
None |
1732155387.187656 |
None |
27 |
0 |
28 |
33 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
582635 |
98 |
PHY_VEC_GRANULE_ITERATOR |
0 |
10 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
0.001036 |
None |
1732155387.178622 |
None |
27 |
0 |
28 |
44 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687238 |
99 |
PHY_TABLE_SCAN |
9 |
32 |
2024-11-21 10:16:27.169649 |
2024-11-21 10:16:27.171759 |
2024-11-21 10:16:27.170705 |
2024-11-21 10:16:27.171759 |
1732155387.169649 |
1732155387.171759 |
0.002110 |
1732155387.170705 |
1732155387.171759 |
0.001054 |
36 |
0 |
37 |
2918720 |
38 |
10 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
707086 |
99 |
PHY_TABLE_SCAN |
0 |
32 |
2024-11-21 10:16:27.186600 |
2024-11-21 10:16:27.187656 |
None |
2024-11-21 10:16:27.187656 |
1732155387.186600 |
1732155387.187656 |
0.001056 |
None |
1732155387.187656 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.161 |
2882 |
582635 |
99 |
PHY_TABLE_SCAN |
0 |
43 |
2024-11-21 10:16:27.178622 |
2024-11-21 10:16:27.179658 |
None |
2024-11-21 10:16:27.178622 |
1732155387.178622 |
1732155387.179658 |
0.001036 |
None |
1732155387.178622 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805697 |
100 |
PHY_VEC_TABLE_SCAN |
9 |
9 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.207746 |
1732155387.207746 |
1732155387.218282 |
0.010536 |
1732155387.207746 |
1732155387.207746 |
0.000000 |
36 |
0 |
37 |
4450 |
38 |
9 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
805697 |
101 |
PHY_TABLE_SCAN |
1408 |
0 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
2024-11-21 10:16:27.210887 |
2024-11-21 10:16:27.217225 |
1732155387.207746 |
1732155387.218282 |
0.010536 |
1732155387.210887 |
1732155387.217225 |
0.006338 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
805697 |
102 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
0.010536 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
805697 |
103 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
0.010536 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.160 |
2882 |
805697 |
104 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.207746 |
2024-11-21 10:16:27.218282 |
None |
None |
1732155387.207746 |
1732155387.218282 |
0.010536 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
105 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
1.641221 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
106 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
None |
None |
1732155386.782285 |
1732155388.423506 |
1.641221 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
109 |
PHY_VEC_HASH_GROUP_BY |
64 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.457913 |
1732155387.457913 |
0.000000 |
11 |
1024 |
6 |
64 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
110 |
PHY_VEC_SUBPLAN_SCAN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.396851 |
1732155387.457913 |
0.061062 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
111 |
PHY_MERGE_UNION |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.396851 |
1732155387.457913 |
0.061062 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
112 |
PHY_VEC_HASH_GROUP_BY |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.396851 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.396851 |
1732155387.400024 |
0.003173 |
11 |
1024 |
6 |
66 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
113 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.394739 |
1732155387.395792 |
0.001053 |
1 |
0 |
2 |
0 |
3 |
50 |
4 |
4096 |
5 |
649 |
6 |
649 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
114 |
PHY_PX_FIFO_COORD |
649 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.238966 |
2024-11-21 10:16:27.238966 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.238966 |
1732155387.238966 |
0.000000 |
0 |
0 |
25 |
1732155387238966 |
24 |
2 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707059 |
115 |
PHY_PX_REDUCE_TRANSMIT |
649 |
0 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.243663 |
1732155387.240480 |
1732155387.243663 |
0.003183 |
1732155387.241541 |
1732155387.243663 |
0.002122 |
0 |
0 |
25 |
1732155387243663 |
24 |
2 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707059 |
116 |
PHY_VEC_TABLE_SCAN |
649 |
0 |
2024-11-21 10:16:27.240480 |
2024-11-21 10:16:27.243663 |
2024-11-21 10:16:27.241541 |
2024-11-21 10:16:27.242602 |
1732155387.240480 |
1732155387.243663 |
0.003183 |
1732155387.241541 |
1732155387.242602 |
0.001061 |
36 |
34880 |
37 |
169370 |
38 |
655 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
117 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.394739 |
1732155387.395792 |
0.001053 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
118 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.367346 |
1732155387.367346 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
119 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.349507 |
1732155387.349507 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
120 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.348483 |
1732155387.348483 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
121 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.326367 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.326367 |
1732155387.326367 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
5 |
4 |
512 |
5 |
66 |
6 |
66 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
122 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.325312 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.324256 |
1732155387.325312 |
0.001056 |
1 |
0 |
2 |
0 |
3 |
112 |
4 |
8192 |
5 |
1268 |
6 |
1268 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
123 |
PHY_VEC_TABLE_SCAN |
1268 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.240022 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.240022 |
1732155387.241077 |
0.001055 |
36 |
12655 |
37 |
162304 |
38 |
1268 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
124 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.324256 |
1732155387.324256 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
125 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.241077 |
1732155387.241077 |
0.000000 |
36 |
611 |
37 |
321 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
126 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.324256 |
1732155387.324256 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
127 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.241077 |
2024-11-21 10:16:27.241077 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.241077 |
1732155387.241077 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
128 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.324256 |
1732155387.324256 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
129 |
PHY_VEC_HASH_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.323201 |
1732155387.323201 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
130 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.242132 |
2024-11-21 10:16:27.242132 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.242132 |
1732155387.242132 |
0.000000 |
36 |
527 |
37 |
90 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
131 |
PHY_NESTED_LOOP_JOIN |
66 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.323201 |
1732155387.323201 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
132 |
PHY_NESTED_LOOP_JOIN |
69 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.302118 |
1732155387.302118 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
133 |
PHY_PX_FIFO_COORD |
69 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.274683 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.274683 |
1732155387.302118 |
0.027435 |
0 |
0 |
25 |
1732155387302118 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.160 |
2882 |
805694 |
134 |
PHY_PX_REDUCE_TRANSMIT |
69 |
0 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.279805 |
1732155387.266945 |
1732155387.279805 |
0.012860 |
1732155387.278741 |
1732155387.279805 |
0.001064 |
0 |
0 |
25 |
1732155387279805 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.160 |
2882 |
805694 |
135 |
PHY_VEC_HASH_JOIN |
69 |
0 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
0.012860 |
1732155387.278741 |
1732155387.278741 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
32 |
4 |
2048 |
5 |
320 |
6 |
320 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
805694 |
136 |
PHY_VEC_TABLE_SCAN |
320 |
0 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.268005 |
2024-11-21 10:16:27.268005 |
1732155387.266945 |
1732155387.279805 |
0.012860 |
1732155387.268005 |
1732155387.268005 |
0.000000 |
36 |
18828 |
37 |
147713 |
38 |
320 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
805694 |
137 |
PHY_TABLE_SCAN |
69 |
0 |
2024-11-21 10:16:27.266945 |
2024-11-21 10:16:27.279805 |
2024-11-21 10:16:27.278741 |
2024-11-21 10:16:27.278741 |
1732155387.266945 |
1732155387.279805 |
0.012860 |
1732155387.278741 |
1732155387.278741 |
0.000000 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
138 |
PHY_VEC_MATERIAL |
69 |
69 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.302118 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.302118 |
1732155387.302118 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
139 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.301062 |
2024-11-21 10:16:27.302118 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.301062 |
1732155387.302118 |
0.001056 |
0 |
0 |
25 |
1732155387302118 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.161 |
2882 |
354097 |
140 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
0.000000 |
1732155387.301931 |
1732155387.301931 |
0.000000 |
0 |
0 |
25 |
1732155387301931 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.161 |
2882 |
354097 |
141 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
2024-11-21 10:16:27.301931 |
1732155387.301931 |
1732155387.301931 |
0.000000 |
1732155387.301931 |
1732155387.301931 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
142 |
PHY_TABLE_SCAN |
66 |
69 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.323201 |
2024-11-21 10:16:27.323201 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.323201 |
1732155387.323201 |
0.000000 |
36 |
0 |
37 |
10035648 |
38 |
101 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
143 |
PHY_TABLE_SCAN |
66 |
66 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.324256 |
2024-11-21 10:16:27.324256 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.324256 |
1732155387.324256 |
0.000000 |
36 |
0 |
37 |
24817 |
38 |
66 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
144 |
PHY_VEC_TABLE_SCAN |
37334 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.325312 |
2024-11-21 10:16:27.326367 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.325312 |
1732155387.326367 |
0.001055 |
36 |
0 |
37 |
13551309 |
38 |
37334 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
145 |
PHY_TABLE_SCAN |
4 |
66 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.348483 |
2024-11-21 10:16:27.348483 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.348483 |
1732155387.348483 |
0.000000 |
36 |
20372 |
37 |
5812224 |
38 |
4 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
146 |
PHY_TABLE_SCAN |
61 |
66 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.349507 |
2024-11-21 10:16:27.349507 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.349507 |
1732155387.349507 |
0.000000 |
36 |
0 |
37 |
8536 |
38 |
66 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
147 |
PHY_TABLE_SCAN |
66 |
66 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.367346 |
2024-11-21 10:16:27.367346 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.367346 |
1732155387.367346 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
66 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
148 |
PHY_TABLE_SCAN |
51 |
66 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.423506 |
2024-11-21 10:16:27.394739 |
2024-11-21 10:16:27.395792 |
1732155386.782285 |
1732155388.423506 |
1.641221 |
1732155387.394739 |
1732155387.395792 |
0.001053 |
36 |
0 |
37 |
53849680 |
38 |
51 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
149 |
PHY_VEC_HASH_GROUP_BY |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
11 |
1024 |
6 |
0 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
150 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
151 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
152 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
153 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
154 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
155 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
156 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
157 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
158 |
PHY_VEC_MERGE_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
159 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.400024 |
None |
None |
36 |
0 |
37 |
321 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
160 |
PHY_SORT |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
30 |
1 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
161 |
PHY_VEC_MERGE_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
162 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.400024 |
None |
None |
36 |
0 |
37 |
90 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
163 |
PHY_SORT |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
30 |
1 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
164 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
165 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.400024 |
2024-11-21 10:16:27.400024 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.400024 |
1732155387.400024 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
166 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
167 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.157 |
2882 |
687226 |
168 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.457913 |
None |
0 |
0 |
25 |
1732155387457913 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
805700 |
169 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.461879 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
None |
1732155387.461879 |
None |
0 |
0 |
25 |
1732155387461879 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
29 |
10.1.250.160 |
2882 |
805700 |
170 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
None |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
None |
1732155387.460820 |
None |
1 |
0 |
2 |
0 |
3 |
1 |
4 |
256 |
5 |
35 |
6 |
35 |
0.0000 |
0.0000 |
0.0000 |
30 |
10.1.250.160 |
2882 |
805700 |
171 |
PHY_TABLE_SCAN |
35 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.436424 |
2024-11-21 10:16:27.439611 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.436424 |
1732155387.439611 |
0.003187 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
30 |
10.1.250.160 |
2882 |
805700 |
172 |
PHY_NESTED_LOOP_JOIN |
187 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.459757 |
1732155387.460820 |
0.001063 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
31 |
10.1.250.160 |
2882 |
805700 |
173 |
PHY_VEC_HASH_JOIN |
338 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.453411 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.453411 |
1732155387.453411 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
41 |
4 |
2048 |
5 |
374 |
6 |
374 |
0.0000 |
0.0000 |
0.0000 |
32 |
10.1.250.160 |
2882 |
805700 |
174 |
PHY_TABLE_SCAN |
374 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.440669 |
2024-11-21 10:16:27.441724 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.440669 |
1732155387.441724 |
0.001055 |
36 |
0 |
37 |
86784 |
38 |
374 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
32 |
10.1.250.160 |
2882 |
805700 |
175 |
PHY_VEC_SUBPLAN_SCAN |
14021 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.444898 |
1732155387.453411 |
0.008513 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
33 |
10.1.250.160 |
2882 |
805700 |
176 |
PHY_VEC_HASH_GROUP_BY |
14021 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.444898 |
2024-11-21 10:16:27.453411 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.444898 |
1732155387.453411 |
0.008513 |
11 |
8192 |
6 |
14021 |
4 |
32768 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
34 |
10.1.250.160 |
2882 |
805700 |
177 |
PHY_VEC_TABLE_SCAN |
15365 |
0 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.441724 |
2024-11-21 10:16:27.444898 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.441724 |
1732155387.444898 |
0.003174 |
36 |
0 |
37 |
2861568 |
38 |
15552 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
31 |
10.1.250.160 |
2882 |
805700 |
178 |
PHY_TABLE_SCAN |
187 |
338 |
2024-11-21 10:16:27.425910 |
2024-11-21 10:16:27.461879 |
2024-11-21 10:16:27.459757 |
2024-11-21 10:16:27.460820 |
1732155387.425910 |
1732155387.461879 |
0.035969 |
1732155387.459757 |
1732155387.460820 |
0.001063 |
36 |
16736 |
37 |
167909 |
38 |
338 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.157 |
2882 |
687226 |
179 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.157 |
2882 |
687226 |
180 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
183 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
184 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
185 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
186 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
187 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
188 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
189 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
190 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
191 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
192 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
193 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
194 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
195 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
196 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
197 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
198 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
199 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
200 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.457913 |
2024-11-21 10:16:27.457913 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.457913 |
1732155387.457913 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
201 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
202 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
203 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
204 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.460022 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.460022 |
None |
36 |
0 |
37 |
13551309 |
38 |
37334 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
205 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
206 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
207 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
208 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
209 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
210 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
211 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
212 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
213 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
216 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
217 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
218 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.481091 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
219 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.481091 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
220 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.481091 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
221 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.481091 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
222 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.481091 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.481091 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
223 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.480036 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
224 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.480036 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.480036 |
None |
0 |
0 |
25 |
1732155387480036 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
805697 |
225 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
0 |
0 |
25 |
1732155387484077 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
805697 |
226 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805697 |
227 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805697 |
228 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
805697 |
229 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805697 |
230 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
2024-11-21 10:16:27.484077 |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
1732155387.484077 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805697 |
231 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
805697 |
232 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805697 |
233 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805697 |
234 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.484077 |
2024-11-21 10:16:27.484077 |
None |
None |
1732155387.484077 |
1732155387.484077 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
235 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
236 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
237 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
238 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
239 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
240 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
243 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
244 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
245 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
246 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
247 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
248 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
249 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
250 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.539898 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.539898 |
None |
0 |
0 |
25 |
1732155387539898 |
24 |
3 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
369244 |
251 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
1732155387.527280 |
None |
0 |
0 |
25 |
1732155387527280 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707089 |
251 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
1732155387.544140 |
None |
0 |
0 |
25 |
1732155387544140 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.161 |
2882 |
354099 |
251 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
1732155387.540267 |
None |
0 |
0 |
25 |
1732155387540267 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369244 |
252 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
1732155387.527280 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707089 |
252 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
1732155387.544140 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
354099 |
252 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
1732155387.540267 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369244 |
253 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
1732155387.527280 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707089 |
253 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
1732155387.544140 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354099 |
253 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
1732155387.540267 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369244 |
254 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
1732155387.527280 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707089 |
254 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
1732155387.544140 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354099 |
254 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
1732155387.540267 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369244 |
255 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
2024-11-21 10:16:27.527280 |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
1732155387.527280 |
None |
0 |
0 |
25 |
1732155387527280 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707089 |
255 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
2024-11-21 10:16:27.544140 |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
1732155387.544140 |
None |
0 |
0 |
25 |
1732155387544140 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354099 |
255 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
2024-11-21 10:16:27.540267 |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
1732155387.540267 |
None |
0 |
0 |
25 |
1732155387540267 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805690 |
256 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.514643 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.514643 |
1732155387.515708 |
0.001065 |
None |
1732155387.515708 |
None |
0 |
0 |
25 |
1732155387515708 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
805690 |
257 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
0.000000 |
None |
1732155387.515708 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
805690 |
258 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
2024-11-21 10:16:27.515708 |
1732155387.515708 |
1732155387.515708 |
0.000000 |
None |
1732155387.515708 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
805690 |
259 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.515708 |
2024-11-21 10:16:27.515708 |
None |
None |
1732155387.515708 |
1732155387.515708 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369244 |
260 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707089 |
260 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354099 |
260 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
369244 |
261 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707089 |
261 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
354099 |
261 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369244 |
262 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707089 |
262 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354099 |
262 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369244 |
263 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.527280 |
2024-11-21 10:16:27.527280 |
None |
None |
1732155387.527280 |
1732155387.527280 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707089 |
263 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.544140 |
2024-11-21 10:16:27.544140 |
None |
None |
1732155387.544140 |
1732155387.544140 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354099 |
263 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.540267 |
2024-11-21 10:16:27.540267 |
None |
None |
1732155387.540267 |
1732155387.540267 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
264 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
265 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
266 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
267 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
268 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
271 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
272 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
5 |
10.1.250.157 |
2882 |
687226 |
273 |
PHY_VEC_HASH_GROUP_BY |
3 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.422451 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.422451 |
1732155388.422451 |
0.000000 |
11 |
1024 |
6 |
3 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
6 |
10.1.250.157 |
2882 |
687226 |
274 |
PHY_VEC_SUBPLAN_SCAN |
140 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155387.832622 |
1732155388.422451 |
0.589829 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
7 |
10.1.250.157 |
2882 |
687226 |
275 |
PHY_MERGE_UNION |
140 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:28.422451 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155387.832622 |
1732155388.422451 |
0.589829 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
276 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.832622 |
1732155387.832622 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
277 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.715682 |
1732155387.832622 |
0.116940 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
278 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.715682 |
1732155387.715682 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
279 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.695722 |
1732155387.715682 |
0.019960 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
280 |
PHY_VEC_HASH_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.678841 |
1732155387.678841 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
281 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.677786 |
1732155387.678841 |
0.001055 |
0 |
0 |
25 |
1732155387677786 |
24 |
3 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
369223 |
282 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.677786 |
1732155387.677786 |
0.000000 |
0 |
0 |
25 |
1732155387677786 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707090 |
282 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
None |
1732155387.636180 |
None |
0 |
0 |
25 |
1732155387636180 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.161 |
2882 |
582575 |
282 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
None |
1732155387.656650 |
None |
0 |
0 |
25 |
1732155387656650 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
369223 |
283 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.677786 |
1732155387.677786 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707090 |
283 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
None |
1732155387.636180 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.161 |
2882 |
582575 |
283 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
None |
1732155387.656650 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369223 |
284 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.677786 |
1732155387.677786 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707090 |
284 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
None |
1732155387.636180 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
582575 |
284 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
None |
1732155387.656650 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369223 |
285 |
PHY_NESTED_LOOP_JOIN |
165 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.657773 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.657773 |
1732155387.657773 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707090 |
285 |
PHY_NESTED_LOOP_JOIN |
2 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
1732155387.636180 |
1732155387.636180 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
582575 |
285 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.637479 |
2024-11-21 10:16:27.637479 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.637479 |
1732155387.637479 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369223 |
286 |
PHY_NESTED_LOOP_JOIN |
279 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.583015 |
1732155387.631404 |
0.048389 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707090 |
286 |
PHY_NESTED_LOOP_JOIN |
5 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
0.038038 |
1732155387.600230 |
1732155387.635134 |
0.034904 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
582575 |
286 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.607622 |
1732155387.609735 |
0.002113 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369223 |
287 |
PHY_PX_FIFO_RECEIVE |
489 |
0 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.583015 |
1732155387.631404 |
0.048389 |
0 |
0 |
25 |
1732155387631404 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707090 |
287 |
PHY_PX_FIFO_RECEIVE |
489 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
0.038038 |
1732155387.598142 |
1732155387.635134 |
0.036992 |
0 |
0 |
25 |
1732155387635134 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
582575 |
287 |
PHY_PX_FIFO_RECEIVE |
489 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.591529 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.591529 |
1732155387.609735 |
0.018206 |
0 |
0 |
25 |
1732155387609735 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707090 |
288 |
PHY_PX_DIST_TRANSMIT |
489 |
0 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.571685 |
1732155387.566350 |
1732155387.571685 |
0.005335 |
1732155387.570608 |
1732155387.571685 |
0.001077 |
0 |
0 |
25 |
1732155387571685 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
707090 |
289 |
PHY_VEC_HASH_JOIN |
489 |
0 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.570608 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
0.005335 |
1732155387.570608 |
1732155387.570608 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
46 |
4 |
4096 |
5 |
547 |
6 |
547 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
707090 |
290 |
PHY_TABLE_SCAN |
547 |
0 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.568487 |
2024-11-21 10:16:27.569551 |
1732155387.566350 |
1732155387.571685 |
0.005335 |
1732155387.568487 |
1732155387.569551 |
0.001064 |
36 |
0 |
37 |
76256 |
38 |
547 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
707090 |
291 |
PHY_VEC_TABLE_SCAN |
15378 |
0 |
2024-11-21 10:16:27.566350 |
2024-11-21 10:16:27.571685 |
2024-11-21 10:16:27.569551 |
2024-11-21 10:16:27.570608 |
1732155387.566350 |
1732155387.571685 |
0.005335 |
1732155387.569551 |
1732155387.570608 |
0.001057 |
36 |
0 |
37 |
2861568 |
38 |
15552 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369223 |
292 |
PHY_VEC_GRANULE_ITERATOR |
279 |
489 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.583015 |
1732155387.631404 |
0.048389 |
27 |
0 |
28 |
1470 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707090 |
292 |
PHY_VEC_GRANULE_ITERATOR |
5 |
489 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
0.038038 |
1732155387.600230 |
1732155387.635134 |
0.034904 |
27 |
0 |
28 |
1470 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
582575 |
292 |
PHY_VEC_GRANULE_ITERATOR |
1 |
489 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.607622 |
1732155387.609735 |
0.002113 |
27 |
0 |
28 |
1960 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
369223 |
293 |
PHY_TABLE_SCAN |
279 |
1469 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.631404 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.583015 |
1732155387.631404 |
0.048389 |
36 |
228287 |
37 |
82069632 |
38 |
279 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707090 |
293 |
PHY_TABLE_SCAN |
5 |
1469 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.600230 |
2024-11-21 10:16:27.635134 |
1732155387.598142 |
1732155387.636180 |
0.038038 |
1732155387.600230 |
1732155387.635134 |
0.034904 |
36 |
61062 |
37 |
1675072 |
38 |
5 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
582575 |
293 |
PHY_TABLE_SCAN |
1 |
1959 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.607622 |
2024-11-21 10:16:27.609735 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.607622 |
1732155387.609735 |
0.002113 |
36 |
14243 |
37 |
284064 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369223 |
294 |
PHY_TABLE_SCAN |
165 |
279 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.657773 |
2024-11-21 10:16:27.657773 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.657773 |
1732155387.657773 |
0.000000 |
36 |
1674842 |
37 |
139459 |
38 |
279 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707090 |
294 |
PHY_TABLE_SCAN |
2 |
5 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
2024-11-21 10:16:27.636180 |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
1732155387.636180 |
1732155387.636180 |
0.000000 |
36 |
89367 |
37 |
2492 |
38 |
5 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
582575 |
294 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
2024-11-21 10:16:27.637479 |
2024-11-21 10:16:27.637479 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
1732155387.637479 |
1732155387.637479 |
0.000000 |
36 |
18095 |
37 |
500 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369223 |
295 |
PHY_TABLE_SCAN |
1 |
165 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.677786 |
1732155387.677786 |
0.000000 |
36 |
32816 |
37 |
61161160 |
38 |
165 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707090 |
295 |
PHY_TABLE_SCAN |
0 |
2 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
2024-11-21 10:16:27.636180 |
1732155387.598142 |
1732155387.637241 |
0.039099 |
None |
1732155387.636180 |
None |
36 |
0 |
37 |
741200 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
582575 |
295 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
2024-11-21 10:16:27.656650 |
1732155387.590452 |
1732155387.656650 |
0.066198 |
None |
1732155387.656650 |
None |
36 |
0 |
37 |
370760 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369223 |
296 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:27.583015 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
2024-11-21 10:16:27.677786 |
1732155387.583015 |
1732155387.677786 |
0.094771 |
1732155387.677786 |
1732155387.677786 |
0.000000 |
36 |
0 |
37 |
390 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707090 |
296 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.598142 |
2024-11-21 10:16:27.637241 |
None |
None |
1732155387.598142 |
1732155387.637241 |
0.039099 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
582575 |
296 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:27.590452 |
2024-11-21 10:16:27.656650 |
None |
None |
1732155387.590452 |
1732155387.656650 |
0.066198 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
297 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.678841 |
2024-11-21 10:16:27.678841 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.678841 |
1732155387.678841 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
298 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.695722 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.695722 |
1732155387.715682 |
0.019960 |
36 |
0 |
37 |
507 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
299 |
PHY_VEC_MATERIAL |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.715682 |
1732155387.715682 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
300 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.714628 |
2024-11-21 10:16:27.715682 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.714628 |
1732155387.715682 |
0.001054 |
0 |
0 |
25 |
1732155387715682 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.161 |
2882 |
354095 |
301 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
0.000000 |
1732155387.716014 |
1732155387.716014 |
0.000000 |
0 |
0 |
25 |
1732155387716014 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.161 |
2882 |
354095 |
302 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
2024-11-21 10:16:27.716014 |
1732155387.716014 |
1732155387.716014 |
0.000000 |
1732155387.716014 |
1732155387.716014 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
303 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.715682 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.715682 |
1732155387.832622 |
0.116940 |
36 |
0 |
37 |
16224 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
304 |
PHY_VEC_SUBPLAN_SCAN |
0 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.832622 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
305 |
PHY_VEC_MERGE_GROUP_BY |
0 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.832622 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
306 |
PHY_NESTED_LOOP_JOIN |
0 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.832622 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
307 |
PHY_NESTED_LOOP_JOIN |
0 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.832622 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
308 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.831566 |
1732155387.831566 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
309 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.814676 |
1732155387.814676 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
310 |
PHY_VEC_HASH_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
311 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
312 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
313 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.778848 |
1732155387.778848 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
314 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.777793 |
1732155387.777793 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
315 |
PHY_NESTED_LOOP_JOIN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.760960 |
1732155387.760960 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
316 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.743060 |
2024-11-21 10:16:27.743060 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.743060 |
1732155387.743060 |
0.000000 |
36 |
0 |
37 |
291872 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
317 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.760960 |
2024-11-21 10:16:27.760960 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.760960 |
1732155387.760960 |
0.000000 |
36 |
0 |
37 |
498 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
318 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.777793 |
2024-11-21 10:16:27.777793 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.777793 |
1732155387.777793 |
0.000000 |
36 |
0 |
37 |
370760 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
319 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.778848 |
2024-11-21 10:16:27.778848 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.778848 |
1732155387.778848 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
320 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
321 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
36 |
0 |
37 |
16224 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
322 |
PHY_VEC_TABLE_SCAN |
2 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.795715 |
2024-11-21 10:16:27.795715 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.795715 |
1732155387.795715 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
323 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.814676 |
2024-11-21 10:16:27.814676 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.814676 |
1732155387.814676 |
0.000000 |
36 |
18450 |
37 |
130528 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
324 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.831566 |
2024-11-21 10:16:27.831566 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.831566 |
1732155387.831566 |
0.000000 |
36 |
0 |
37 |
387 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
325 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155387.832622 |
None |
36 |
15152 |
37 |
131008 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
326 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
327 |
PHY_VEC_HASH_JOIN |
60 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.943119 |
1732155387.944163 |
0.001044 |
1 |
0 |
2 |
0 |
3 |
112 |
4 |
8192 |
5 |
1268 |
6 |
1268 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
328 |
PHY_VEC_TABLE_SCAN |
1268 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.832622 |
1732155387.832622 |
0.000000 |
36 |
0 |
37 |
40576 |
38 |
1268 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
329 |
PHY_VEC_HASH_JOIN |
60 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.943119 |
1732155387.944163 |
0.001044 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
330 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.832622 |
2024-11-21 10:16:27.832622 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.832622 |
1732155387.832622 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
331 |
PHY_NESTED_LOOP_JOIN |
60 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.943119 |
1732155387.944163 |
0.001044 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
332 |
PHY_NESTED_LOOP_JOIN |
60 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.942064 |
1732155387.942064 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
333 |
PHY_NESTED_LOOP_JOIN |
60 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.912557 |
1732155387.912557 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
334 |
PHY_NESTED_LOOP_JOIN |
81 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.887349 |
1732155387.887349 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
335 |
PHY_PX_FIFO_COORD |
81 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.865246 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.865246 |
1732155387.887349 |
0.022103 |
0 |
0 |
25 |
1732155387887349 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707083 |
336 |
PHY_PX_REDUCE_TRANSMIT |
81 |
0 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.870300 |
1732155387.858567 |
1732155387.870300 |
0.011733 |
1732155387.869243 |
1732155387.870300 |
0.001057 |
0 |
0 |
25 |
1732155387870300 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707083 |
337 |
PHY_NESTED_LOOP_JOIN |
81 |
0 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
0.011733 |
1732155387.869243 |
1732155387.869243 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707083 |
338 |
PHY_TABLE_SCAN |
81 |
0 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.867090 |
2024-11-21 10:16:27.867090 |
1732155387.858567 |
1732155387.870300 |
0.011733 |
1732155387.867090 |
1732155387.867090 |
0.000000 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707083 |
339 |
PHY_TABLE_SCAN |
81 |
81 |
2024-11-21 10:16:27.858567 |
2024-11-21 10:16:27.870300 |
2024-11-21 10:16:27.869243 |
2024-11-21 10:16:27.869243 |
1732155387.858567 |
1732155387.870300 |
0.011733 |
1732155387.869243 |
1732155387.869243 |
0.000000 |
36 |
0 |
37 |
41060 |
38 |
81 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
340 |
PHY_VEC_MATERIAL |
81 |
81 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.887349 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.887349 |
1732155387.887349 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
341 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.886290 |
2024-11-21 10:16:27.887349 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.886290 |
1732155387.887349 |
0.001059 |
0 |
0 |
25 |
1732155387887349 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
582578 |
342 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
0.000000 |
1732155387.887174 |
1732155387.887174 |
0.000000 |
0 |
0 |
25 |
1732155387887174 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
582578 |
343 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
2024-11-21 10:16:27.887174 |
1732155387.887174 |
1732155387.887174 |
0.000000 |
1732155387.887174 |
1732155387.887174 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
344 |
PHY_TABLE_SCAN |
60 |
81 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.912557 |
2024-11-21 10:16:27.912557 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.912557 |
1732155387.912557 |
0.000000 |
36 |
234414 |
37 |
13141440 |
38 |
159 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
345 |
PHY_TABLE_SCAN |
60 |
60 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.942064 |
2024-11-21 10:16:27.942064 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.942064 |
1732155387.942064 |
0.000000 |
36 |
36775 |
37 |
53078520 |
38 |
60 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
346 |
PHY_TABLE_SCAN |
60 |
60 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.943119 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.943119 |
1732155387.944163 |
0.001044 |
36 |
0 |
37 |
24314 |
38 |
60 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
347 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155388.012563 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
348 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:27.944163 |
2024-11-21 10:16:27.944163 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155387.944163 |
1732155387.944163 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
349 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155388.012563 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
350 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
2024-11-21 10:16:28.012563 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
1732155388.012563 |
None |
0 |
0 |
25 |
1732155388012563 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.160 |
2882 |
707089 |
351 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.016696 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.016696 |
None |
0 |
0 |
25 |
1732155388016696 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.160 |
2882 |
707089 |
352 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.160 |
2882 |
707089 |
353 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707089 |
354 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707089 |
355 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707089 |
356 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707089 |
357 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
2024-11-21 10:16:28.015635 |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
1732155388.015635 |
None |
0 |
0 |
25 |
1732155388015635 |
24 |
0 |
0 |
0 |
10 |
2 |
9 |
2 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687235 |
358 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
None |
1732155387.977842 |
None |
0 |
0 |
25 |
1732155387977842 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707087 |
358 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
None |
1732155387.997597 |
None |
0 |
0 |
25 |
1732155387997597 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354093 |
358 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.989299 |
1732155387.988243 |
1732155387.989299 |
0.001056 |
None |
1732155387.989299 |
None |
0 |
0 |
25 |
1732155387989299 |
24 |
1 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687235 |
359 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
None |
1732155387.977842 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707087 |
359 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
None |
1732155387.997597 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354093 |
359 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
0.001056 |
None |
1732155387.988243 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687235 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
0 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
0 |
0 |
25 |
1732155387977842 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707087 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
0 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
0 |
0 |
25 |
1732155387997597 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
354093 |
360 |
PHY_PX_FIFO_RECEIVE |
1 |
0 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
0.001056 |
1732155387.988243 |
1732155387.988243 |
0.000000 |
0 |
0 |
25 |
1732155387988243 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
369250 |
361 |
PHY_PX_DIST_TRANSMIT |
1 |
0 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
0.009478 |
1732155387.957843 |
1732155387.964174 |
0.006331 |
0 |
0 |
25 |
1732155387964174 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
369250 |
362 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
0.009478 |
1732155387.957843 |
1732155387.964174 |
0.006331 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
369250 |
363 |
PHY_VEC_TABLE_SCAN |
160 |
0 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.954696 |
1732155387.954696 |
1732155387.964174 |
0.009478 |
1732155387.954696 |
1732155387.954696 |
0.000000 |
36 |
0 |
37 |
205392 |
38 |
160 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
369250 |
364 |
PHY_TABLE_SCAN |
1 |
160 |
2024-11-21 10:16:27.954696 |
2024-11-21 10:16:27.964174 |
2024-11-21 10:16:27.957843 |
2024-11-21 10:16:27.964174 |
1732155387.954696 |
1732155387.964174 |
0.009478 |
1732155387.957843 |
1732155387.964174 |
0.006331 |
36 |
0 |
37 |
41108480 |
38 |
2795 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687235 |
365 |
PHY_VEC_GRANULE_ITERATOR |
0 |
1 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
None |
1732155387.977842 |
None |
27 |
0 |
28 |
6 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707087 |
365 |
PHY_VEC_GRANULE_ITERATOR |
0 |
1 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
None |
1732155387.997597 |
None |
27 |
0 |
28 |
6 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
354093 |
365 |
PHY_VEC_GRANULE_ITERATOR |
0 |
1 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
0.001056 |
None |
1732155387.988243 |
None |
27 |
0 |
28 |
8 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687235 |
366 |
PHY_TABLE_SCAN |
0 |
5 |
2024-11-21 10:16:27.976787 |
2024-11-21 10:16:27.977842 |
None |
2024-11-21 10:16:27.977842 |
1732155387.976787 |
1732155387.977842 |
0.001055 |
None |
1732155387.977842 |
None |
36 |
0 |
37 |
291872 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
707087 |
366 |
PHY_TABLE_SCAN |
0 |
5 |
2024-11-21 10:16:27.996535 |
2024-11-21 10:16:27.997597 |
None |
2024-11-21 10:16:27.997597 |
1732155387.996535 |
1732155387.997597 |
0.001062 |
None |
1732155387.997597 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.161 |
2882 |
354093 |
366 |
PHY_TABLE_SCAN |
0 |
7 |
2024-11-21 10:16:27.988243 |
2024-11-21 10:16:27.989299 |
None |
2024-11-21 10:16:27.988243 |
1732155387.988243 |
1732155387.989299 |
0.001056 |
None |
1732155387.988243 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707089 |
367 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707089 |
368 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707089 |
369 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707089 |
370 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.160 |
2882 |
707089 |
371 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.015635 |
2024-11-21 10:16:28.016696 |
None |
None |
1732155388.015635 |
1732155388.016696 |
0.001061 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
372 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
373 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
None |
None |
1732155386.782285 |
1732155388.424561 |
1.642276 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
376 |
PHY_VEC_HASH_GROUP_BY |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.354650 |
1732155388.354650 |
0.000000 |
11 |
1024 |
6 |
79 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
377 |
PHY_VEC_SUBPLAN_SCAN |
80 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.184012 |
1732155388.354650 |
0.170638 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
378 |
PHY_MERGE_UNION |
80 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.184012 |
1732155388.354650 |
0.170638 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
379 |
PHY_VEC_HASH_GROUP_BY |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.182958 |
2024-11-21 10:16:28.184012 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.182958 |
1732155388.184012 |
0.001054 |
11 |
1024 |
6 |
79 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
380 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.181902 |
1732155388.182958 |
0.001056 |
1 |
0 |
2 |
0 |
3 |
50 |
4 |
4096 |
5 |
649 |
6 |
649 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
381 |
PHY_PX_FIFO_COORD |
649 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.032526 |
2024-11-21 10:16:28.032526 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.032526 |
1732155388.032526 |
0.000000 |
0 |
0 |
25 |
1732155388032526 |
24 |
2 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.160 |
2882 |
707090 |
382 |
PHY_PX_REDUCE_TRANSMIT |
649 |
0 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
1732155388.035782 |
1732155388.036842 |
0.001060 |
1732155388.035782 |
1732155388.036842 |
0.001060 |
0 |
0 |
25 |
1732155388036842 |
24 |
2 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707090 |
383 |
PHY_VEC_TABLE_SCAN |
649 |
0 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.036842 |
2024-11-21 10:16:28.035782 |
2024-11-21 10:16:28.035782 |
1732155388.035782 |
1732155388.036842 |
0.001060 |
1732155388.035782 |
1732155388.035782 |
0.000000 |
36 |
0 |
37 |
169370 |
38 |
655 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
384 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.181902 |
1732155388.182958 |
0.001056 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
385 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.151314 |
1732155388.151314 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
386 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.134500 |
1732155388.134500 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
387 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.132391 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.132391 |
1732155388.133446 |
0.001055 |
1 |
0 |
2 |
0 |
3 |
7 |
4 |
512 |
5 |
79 |
6 |
79 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
388 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.130281 |
1732155388.130281 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
389 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.106058 |
1732155388.107113 |
0.001055 |
1 |
0 |
2 |
0 |
3 |
112 |
4 |
8192 |
5 |
1268 |
6 |
1268 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
390 |
PHY_VEC_TABLE_SCAN |
1268 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.033584 |
1732155388.033584 |
0.000000 |
36 |
0 |
37 |
162304 |
38 |
1268 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
391 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.106058 |
1732155388.107113 |
0.001055 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
392 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.033584 |
1732155388.033584 |
0.000000 |
36 |
0 |
37 |
321 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
393 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.106058 |
1732155388.107113 |
0.001055 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
394 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.033584 |
1732155388.033584 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
395 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.106058 |
1732155388.107113 |
0.001055 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
396 |
PHY_VEC_HASH_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.105004 |
1732155388.105004 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
4 |
5 |
1 |
6 |
1 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
397 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.033584 |
2024-11-21 10:16:28.033584 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.033584 |
1732155388.033584 |
0.000000 |
36 |
0 |
37 |
90 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
398 |
PHY_NESTED_LOOP_JOIN |
79 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.105004 |
1732155388.105004 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
399 |
PHY_NESTED_LOOP_JOIN |
81 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.086025 |
1732155388.086025 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
400 |
PHY_PX_FIFO_COORD |
81 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.066135 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.066135 |
1732155388.086025 |
0.019890 |
0 |
0 |
25 |
1732155388086025 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.160 |
2882 |
707088 |
401 |
PHY_PX_REDUCE_TRANSMIT |
81 |
0 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
0.008502 |
1732155388.069747 |
1732155388.069747 |
0.000000 |
0 |
0 |
25 |
1732155388069747 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.160 |
2882 |
707088 |
402 |
PHY_VEC_HASH_JOIN |
81 |
0 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
0.008502 |
1732155388.069747 |
1732155388.069747 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
32 |
4 |
2048 |
5 |
320 |
6 |
320 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
707088 |
403 |
PHY_VEC_TABLE_SCAN |
320 |
0 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.061245 |
1732155388.061245 |
1732155388.069747 |
0.008502 |
1732155388.061245 |
1732155388.061245 |
0.000000 |
36 |
0 |
37 |
147713 |
38 |
320 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
707088 |
404 |
PHY_TABLE_SCAN |
81 |
0 |
2024-11-21 10:16:28.061245 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
2024-11-21 10:16:28.069747 |
1732155388.061245 |
1732155388.069747 |
0.008502 |
1732155388.069747 |
1732155388.069747 |
0.000000 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
405 |
PHY_VEC_MATERIAL |
81 |
81 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.086025 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.086025 |
1732155388.086025 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
406 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.084971 |
2024-11-21 10:16:28.086025 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.084971 |
1732155388.086025 |
0.001054 |
0 |
0 |
25 |
1732155388086025 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.161 |
2882 |
354099 |
407 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
1732155388.085651 |
1732155388.086707 |
0.001056 |
1732155388.085651 |
1732155388.086707 |
0.001056 |
0 |
0 |
25 |
1732155388086707 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.161 |
2882 |
354099 |
408 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.086707 |
2024-11-21 10:16:28.085651 |
2024-11-21 10:16:28.085651 |
1732155388.085651 |
1732155388.086707 |
0.001056 |
1732155388.085651 |
1732155388.085651 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
409 |
PHY_TABLE_SCAN |
79 |
81 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.424561 |
2024-11-21 10:16:28.105004 |
2024-11-21 10:16:28.105004 |
1732155386.782285 |
1732155388.424561 |
1.642276 |
1732155388.105004 |
1732155388.105004 |
0.000000 |
36 |
0 |
37 |
13141440 |
38 |
159 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
410 |
PHY_TABLE_SCAN |
79 |
79 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.106058 |
2024-11-21 10:16:28.107113 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.106058 |
1732155388.107113 |
0.001055 |
36 |
0 |
37 |
29175 |
38 |
79 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
411 |
PHY_TABLE_SCAN |
8 |
79 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.130281 |
2024-11-21 10:16:28.130281 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.130281 |
1732155388.130281 |
0.000000 |
36 |
0 |
37 |
6957056 |
38 |
8 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
412 |
PHY_VEC_TABLE_SCAN |
37334 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.131335 |
2024-11-21 10:16:28.133446 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.131335 |
1732155388.133446 |
0.002111 |
36 |
0 |
37 |
13551309 |
38 |
37334 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
413 |
PHY_TABLE_SCAN |
67 |
79 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.134500 |
2024-11-21 10:16:28.134500 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.134500 |
1732155388.134500 |
0.000000 |
36 |
0 |
37 |
10194 |
38 |
79 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
414 |
PHY_TABLE_SCAN |
79 |
79 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.151314 |
2024-11-21 10:16:28.151314 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.151314 |
1732155388.151314 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
79 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
415 |
PHY_TABLE_SCAN |
56 |
79 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.181902 |
2024-11-21 10:16:28.182958 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.181902 |
1732155388.182958 |
0.001056 |
36 |
18435 |
37 |
69888800 |
38 |
56 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
416 |
PHY_VEC_HASH_GROUP_BY |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.354650 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.353594 |
1732155388.354650 |
0.001056 |
11 |
1024 |
6 |
1 |
4 |
2048 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
417 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.353594 |
2024-11-21 10:16:28.353594 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.353594 |
1732155388.353594 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
418 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.336758 |
1732155388.336758 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
419 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.310444 |
2024-11-21 10:16:28.310444 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.310444 |
1732155388.310444 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
420 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.293583 |
2024-11-21 10:16:28.293583 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.293583 |
1732155388.293583 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
421 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.782285 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.292527 |
2024-11-21 10:16:28.292527 |
1732155386.782285 |
1732155388.425618 |
1.643333 |
1732155388.292527 |
1732155388.292527 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
422 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.276681 |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.276681 |
1732155388.276681 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
423 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.275622 |
1732155388.275622 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
424 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.275622 |
1732155388.275622 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
425 |
PHY_VEC_MERGE_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
426 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.184012 |
None |
None |
36 |
0 |
37 |
321 |
38 |
3 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.157 |
2882 |
687226 |
427 |
PHY_SORT |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
29 |
1 |
30 |
1 |
31 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.157 |
2882 |
687226 |
428 |
PHY_VEC_MERGE_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
429 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.184012 |
1732155388.255554 |
0.071542 |
36 |
0 |
37 |
90 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
23 |
10.1.250.157 |
2882 |
687226 |
430 |
PHY_SORT |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
29 |
1 |
30 |
1 |
31 |
1 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
24 |
10.1.250.157 |
2882 |
687226 |
431 |
PHY_VEC_HASH_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
432 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.184012 |
2024-11-21 10:16:28.184012 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.184012 |
1732155388.184012 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
25 |
10.1.250.157 |
2882 |
687226 |
433 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
434 |
PHY_NESTED_LOOP_JOIN |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.254498 |
1732155388.254498 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.157 |
2882 |
687226 |
435 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.232434 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.232434 |
1732155388.254498 |
0.022064 |
0 |
0 |
25 |
1732155388254498 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.160 |
2882 |
707090 |
436 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.235351 |
1732155388.236408 |
0.001057 |
0 |
0 |
25 |
1732155388236408 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
29 |
10.1.250.160 |
2882 |
707090 |
437 |
PHY_VEC_HASH_JOIN |
1 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.235351 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.235351 |
1732155388.236408 |
0.001057 |
1 |
0 |
2 |
0 |
3 |
1 |
4 |
256 |
5 |
35 |
6 |
35 |
0.0000 |
0.0000 |
0.0000 |
30 |
10.1.250.160 |
2882 |
707090 |
438 |
PHY_TABLE_SCAN |
35 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.213066 |
2024-11-21 10:16:28.214128 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.213066 |
1732155388.214128 |
0.001062 |
36 |
0 |
37 |
220800 |
38 |
1485 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
30 |
10.1.250.160 |
2882 |
707090 |
439 |
PHY_NESTED_LOOP_JOIN |
316 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.234290 |
1732155388.236408 |
0.002118 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
31 |
10.1.250.160 |
2882 |
707090 |
440 |
PHY_VEC_HASH_JOIN |
484 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.228949 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.228949 |
1732155388.230080 |
0.001131 |
1 |
0 |
2 |
0 |
3 |
46 |
4 |
4096 |
5 |
547 |
6 |
547 |
0.0000 |
0.0000 |
0.0000 |
32 |
10.1.250.160 |
2882 |
707090 |
441 |
PHY_TABLE_SCAN |
547 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.216222 |
2024-11-21 10:16:28.217278 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.216222 |
1732155388.217278 |
0.001056 |
36 |
0 |
37 |
76256 |
38 |
547 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
32 |
10.1.250.160 |
2882 |
707090 |
442 |
PHY_VEC_SUBPLAN_SCAN |
14021 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.221508 |
1732155388.230080 |
0.008572 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
33 |
10.1.250.160 |
2882 |
707090 |
443 |
PHY_VEC_HASH_GROUP_BY |
14021 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.221508 |
2024-11-21 10:16:28.230080 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.221508 |
1732155388.230080 |
0.008572 |
11 |
8192 |
6 |
14021 |
4 |
32768 |
7 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
34 |
10.1.250.160 |
2882 |
707090 |
444 |
PHY_VEC_TABLE_SCAN |
15365 |
0 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.217278 |
2024-11-21 10:16:28.220452 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.217278 |
1732155388.220452 |
0.003174 |
36 |
0 |
37 |
2861568 |
38 |
15552 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
31 |
10.1.250.160 |
2882 |
707090 |
445 |
PHY_TABLE_SCAN |
316 |
484 |
2024-11-21 10:16:28.206693 |
2024-11-21 10:16:28.236408 |
2024-11-21 10:16:28.234290 |
2024-11-21 10:16:28.236408 |
1732155388.206693 |
1732155388.236408 |
0.029715 |
1732155388.234290 |
1732155388.236408 |
0.002118 |
36 |
18850 |
37 |
239230 |
38 |
484 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
27 |
10.1.250.157 |
2882 |
687226 |
446 |
PHY_VEC_MATERIAL |
1 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.254498 |
1732155388.254498 |
0.000000 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
28 |
10.1.250.157 |
2882 |
687226 |
447 |
PHY_PX_FIFO_COORD |
1 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.254498 |
2024-11-21 10:16:28.254498 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.254498 |
1732155388.254498 |
0.000000 |
0 |
0 |
25 |
1732155388254498 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
29 |
10.1.250.161 |
2882 |
354095 |
448 |
PHY_PX_REDUCE_TRANSMIT |
1 |
0 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
1732155388.254495 |
1732155388.255550 |
0.001055 |
1732155388.254495 |
1732155388.255550 |
0.001055 |
0 |
0 |
25 |
1732155388255550 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
30 |
10.1.250.161 |
2882 |
354095 |
449 |
PHY_VEC_TABLE_SCAN |
1 |
0 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.255550 |
2024-11-21 10:16:28.254495 |
2024-11-21 10:16:28.254495 |
1732155388.254495 |
1732155388.255550 |
0.001055 |
1732155388.254495 |
1732155388.254495 |
0.000000 |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
26 |
10.1.250.157 |
2882 |
687226 |
450 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.255554 |
2024-11-21 10:16:28.255554 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.255554 |
1732155388.255554 |
0.000000 |
36 |
0 |
37 |
393 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
687226 |
451 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.275622 |
1732155388.275622 |
0.000000 |
36 |
0 |
37 |
507 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
452 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.275622 |
2024-11-21 10:16:28.275622 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.275622 |
1732155388.275622 |
0.000000 |
36 |
0 |
37 |
130 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
453 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.276681 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.276681 |
None |
36 |
5970 |
37 |
60840 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
454 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.292527 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.292527 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
455 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.293583 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.293583 |
None |
36 |
0 |
37 |
16224 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
456 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.310444 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.310444 |
None |
36 |
0 |
37 |
88064 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
457 |
PHY_TABLE_SCAN |
1 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.336758 |
2024-11-21 10:16:28.336758 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.336758 |
1732155388.336758 |
0.000000 |
36 |
0 |
37 |
884680 |
38 |
1 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
458 |
PHY_TABLE_SCAN |
0 |
1 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.353594 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.353594 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
459 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
460 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
461 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
462 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
463 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
464 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
465 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
466 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
8 |
5 |
2 |
6 |
2 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
467 |
PHY_VEC_TABLE_SCAN |
2 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
2024-11-21 10:16:28.354650 |
2024-11-21 10:16:28.354650 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
1732155388.354650 |
1732155388.354650 |
0.000000 |
36 |
0 |
37 |
150 |
38 |
2 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
687226 |
468 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
469 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
470 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
471 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.356728 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.356728 |
None |
36 |
0 |
37 |
13551309 |
38 |
37334 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
687226 |
472 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
687226 |
473 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
687226 |
474 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
687226 |
475 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
476 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
477 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
478 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
479 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
480 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
483 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
484 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
485 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
486 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
487 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
488 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
489 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
490 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
491 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.375117 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.375117 |
None |
0 |
0 |
25 |
1732155388375117 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
805696 |
492 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
0.001059 |
None |
1732155388.379279 |
None |
0 |
0 |
25 |
1732155388379279 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
805696 |
493 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
0.001059 |
None |
1732155388.379279 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805696 |
494 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
0.001059 |
None |
1732155388.379279 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805696 |
495 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.378220 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.378220 |
1732155388.379279 |
0.001059 |
None |
1732155388.379279 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
805696 |
496 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
1732155388.379279 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805696 |
497 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
2024-11-21 10:16:28.379279 |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
1732155388.379279 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805696 |
498 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
805696 |
499 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
805696 |
500 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
805696 |
501 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.379279 |
2024-11-21 10:16:28.379279 |
None |
None |
1732155388.379279 |
1732155388.379279 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
502 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
503 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
504 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
505 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
506 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
509 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
510 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
8 |
10.1.250.157 |
2882 |
687226 |
511 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
512 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
513 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
514 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
515 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
516 |
PHY_VEC_HASH_JOIN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
1 |
0 |
2 |
0 |
3 |
0 |
4 |
2 |
5 |
0 |
6 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
517 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
2024-11-21 10:16:28.422451 |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
1732155388.422451 |
None |
0 |
0 |
25 |
1732155388422451 |
24 |
3 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.157 |
2882 |
369216 |
518 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.410848 |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
1732155388.410848 |
None |
0 |
0 |
25 |
1732155388410848 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.160 |
2882 |
707085 |
518 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.426933 |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
1732155388.426933 |
None |
0 |
0 |
25 |
1732155388426933 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
15 |
10.1.250.161 |
2882 |
354093 |
518 |
PHY_PX_REDUCE_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
1732155388.418792 |
None |
0 |
0 |
25 |
1732155388418792 |
24 |
1 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.157 |
2882 |
369216 |
519 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
1732155388.409793 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.160 |
2882 |
707085 |
519 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
1732155388.425877 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
16 |
10.1.250.161 |
2882 |
354093 |
519 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
1732155388.418792 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369216 |
520 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
1732155388.409793 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707085 |
520 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
1732155388.425877 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354093 |
520 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
1732155388.418792 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369216 |
521 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
1732155388.409793 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707085 |
521 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
1732155388.425877 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354093 |
521 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
1732155388.418792 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369216 |
522 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
2024-11-21 10:16:28.409793 |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
1732155388.409793 |
None |
0 |
0 |
25 |
1732155388409793 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707085 |
522 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
2024-11-21 10:16:28.425877 |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
1732155388.425877 |
None |
0 |
0 |
25 |
1732155388425877 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354093 |
522 |
PHY_PX_FIFO_RECEIVE |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
2024-11-21 10:16:28.418792 |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
1732155388.418792 |
None |
0 |
0 |
25 |
1732155388418792 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
805699 |
523 |
PHY_PX_DIST_TRANSMIT |
0 |
0 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
0.001055 |
None |
1732155388.400444 |
None |
0 |
0 |
25 |
1732155388400444 |
24 |
3 |
0 |
0 |
10 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
21 |
10.1.250.160 |
2882 |
805699 |
524 |
PHY_NESTED_LOOP_JOIN |
0 |
0 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
0.001055 |
None |
1732155388.400444 |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
805699 |
525 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
2024-11-21 10:16:28.400444 |
1732155388.399389 |
1732155388.400444 |
0.001055 |
None |
1732155388.400444 |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
22 |
10.1.250.160 |
2882 |
805699 |
526 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.399389 |
2024-11-21 10:16:28.400444 |
None |
None |
1732155388.399389 |
1732155388.400444 |
0.001055 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.157 |
2882 |
369216 |
527 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.160 |
2882 |
707085 |
527 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
19 |
10.1.250.161 |
2882 |
354093 |
527 |
PHY_VEC_GRANULE_ITERATOR |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
None |
None |
27 |
0 |
28 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.157 |
2882 |
369216 |
528 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.160 |
2882 |
707085 |
528 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
20 |
10.1.250.161 |
2882 |
354093 |
528 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.157 |
2882 |
369216 |
529 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.160 |
2882 |
707085 |
529 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
18 |
10.1.250.161 |
2882 |
354093 |
529 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.157 |
2882 |
369216 |
530 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.409793 |
2024-11-21 10:16:28.410848 |
None |
None |
1732155388.409793 |
1732155388.410848 |
0.001055 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.160 |
2882 |
707085 |
530 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.425877 |
2024-11-21 10:16:28.426933 |
None |
None |
1732155388.425877 |
1732155388.426933 |
0.001056 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
17 |
10.1.250.161 |
2882 |
354093 |
530 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:28.418792 |
2024-11-21 10:16:28.418792 |
None |
None |
1732155388.418792 |
1732155388.418792 |
0.000000 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
14 |
10.1.250.157 |
2882 |
687226 |
531 |
PHY_VEC_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
13 |
10.1.250.157 |
2882 |
687226 |
532 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
533 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
11 |
10.1.250.157 |
2882 |
687226 |
534 |
PHY_VEC_MATERIAL |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
0 |
26 |
0 |
0.0000 |
0.0000 |
0.0000 |
12 |
10.1.250.157 |
2882 |
687226 |
535 |
PHY_PX_FIFO_COORD |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
0 |
0 |
0 |
0 |
24 |
0 |
0 |
0 |
10 |
0 |
9 |
0 |
0.0000 |
0.0000 |
0.0000 |
10 |
10.1.250.157 |
2882 |
687226 |
538 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
9 |
10.1.250.157 |
2882 |
687226 |
539 |
PHY_TABLE_SCAN |
0 |
0 |
2024-11-21 10:16:26.783339 |
2024-11-21 10:16:28.425618 |
None |
None |
1732155386.783339 |
1732155388.425618 |
1.642279 |
None |
None |
None |
36 |
0 |
37 |
0 |
38 |
0 |
39 |
0 |
0 |
0 |
0 |
0 |
0.0000 |
0.0000 |
0.0000 |
算子优先视图
线程优先视图
本报告在租户下使用的 SQL
DFO 级
select
AVG(ROWS) EST_ROWS, /*0*/
plan_monitor.PLAN_DEPTH PLAN_DEPTH,
plan_monitor.PLAN_LINE_ID PLAN_LINE_ID,
PLAN_OPERATION,
COUNT(*) PARALLEL,
MIN(FIRST_REFRESH_TIME) MIN_FIRST_REFRESH_TIME,/*5*/
MAX(LAST_REFRESH_TIME) MAX_LAST_REFRESH_TIME,
MIN(FIRST_CHANGE_TIME) MIN_FIRST_CHANGE_TIME,
MAX(LAST_CHANGE_TIME) MAX_LAST_CHANGE_TIME,
UNIX_TIMESTAMP(MIN(FIRST_REFRESH_TIME)) MIN_FIRST_REFRESH_TS,
UNIX_TIMESTAMP(MAX(LAST_REFRESH_TIME)) MAX_LAST_REFRESH_TS, /*10*/
UNIX_TIMESTAMP(MIN(FIRST_CHANGE_TIME)) MIN_FIRST_CHANGE_TS,
UNIX_TIMESTAMP(MAX(LAST_CHANGE_TIME)) MAX_LAST_CHANGE_TS,
AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) AVG_REFRESH_TIME,
MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MAX_REFRESH_TIME,
MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MIN_REFRESH_TIME, /*15 */
AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) AVG_CHANGE_TIME,
MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MAX_CHANGE_TIME,
MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MIN_CHANGE_TIME,
SUM(OUTPUT_ROWS) TOTAL_OUTPUT_ROWS,
(MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) - MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME))) / MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)+0.00000001) SKEWNESS,
SUM(STARTS) TOTAL_RESCAN_TIMES,/* 20 */
MAX(OTHERSTAT_1_ID) OTHERSTAT_1_ID,
SUM(OTHERSTAT_1_VALUE) SUM_STAT_1,
MAX(OTHERSTAT_1_VALUE) MAX_STAT_1,
MIN(OTHERSTAT_1_VALUE) MIN_STAT_1,
AVG(OTHERSTAT_1_VALUE) AVG_STAT_1, /* 25 */
MAX(OTHERSTAT_2_ID) OTHERSTAT_2_ID,
SUM(OTHERSTAT_2_VALUE) SUM_STAT_2,
MAX(OTHERSTAT_2_VALUE) MAX_STAT_2,
MIN(OTHERSTAT_2_VALUE) MIN_STAT_2,
AVG(OTHERSTAT_2_VALUE) AVG_STAT_2, /* 30 */
MAX(OTHERSTAT_3_ID) OTHERSTAT_3_ID,
SUM(OTHERSTAT_3_VALUE) SUM_STAT_3,
MAX(OTHERSTAT_3_VALUE) MAX_STAT_3,
MIN(OTHERSTAT_3_VALUE) MIN_STAT_3,
AVG(OTHERSTAT_3_VALUE) AVG_STAT_3, /* 35 */
MAX(OTHERSTAT_4_ID) OTHERSTAT_4_ID,
SUM(OTHERSTAT_4_VALUE) SUM_STAT_4,
MAX(OTHERSTAT_4_VALUE) MAX_STAT_4,
MIN(OTHERSTAT_4_VALUE) MIN_STAT_4,
AVG(OTHERSTAT_4_VALUE) AVG_STAT_4, /* 40 */
MAX(OTHERSTAT_5_ID) OTHERSTAT_5_ID,
SUM(OTHERSTAT_5_VALUE) SUM_STAT_5,
MAX(OTHERSTAT_5_VALUE) MAX_STAT_5,
MIN(OTHERSTAT_5_VALUE) MIN_STAT_5,
AVG(OTHERSTAT_5_VALUE) AVG_STAT_5, /* 45*/
MAX(OTHERSTAT_6_ID) OTHERSTAT_6_ID,
SUM(OTHERSTAT_6_VALUE) SUM_STAT_6,
MAX(OTHERSTAT_6_VALUE) MAX_STAT_6,
MIN(OTHERSTAT_6_VALUE) MIN_STAT_6,
AVG(OTHERSTAT_6_VALUE) AVG_STAT_6 /* 50 */,
TRUNCATE(AVG(DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
TRUNCATE(AVG(DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
TRUNCATE(AVG(USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
(
select * FROM oceanbase.gv$sql_plan_monitor
where
trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
) plan_monitor
LEFT JOIN
(
SELECT ROWS, PLAN_LINE_ID FROM oceanbase.gv$ob_plan_cache_plan_explain WHERE plan_id = 11150 AND tenant_id = 1006 and svr_ip = '10.1.250.157' and svr_port = 2882
) plan_explain
ON
plan_monitor.PLAN_LINE_ID = plan_explain.PLAN_LINE_ID
GROUP BY
plan_monitor.PLAN_LINE_ID, plan_monitor.PLAN_OPERATION
ORDER BY
plan_monitor.PLAN_LINE_ID ASC;
机器级
select
PLAN_DEPTH,
PLAN_LINE_ID,
PLAN_OPERATION,
COUNT(*) PARALLEL,
MIN(FIRST_REFRESH_TIME) MIN_FIRST_REFRESH_TIME,
MAX(LAST_REFRESH_TIME) MAX_LAST_REFRESH_TIME,
MIN(FIRST_CHANGE_TIME) MIN_FIRST_CHANGE_TIME,
MAX(LAST_CHANGE_TIME) MAX_LAST_CHANGE_TIME,
UNIX_TIMESTAMP(MIN(FIRST_REFRESH_TIME)) MIN_FIRST_REFRESH_TS,
UNIX_TIMESTAMP(MAX(LAST_REFRESH_TIME)) MAX_LAST_REFRESH_TS,
UNIX_TIMESTAMP(MIN(FIRST_CHANGE_TIME)) MIN_FIRST_CHANGE_TS,
UNIX_TIMESTAMP(MAX(LAST_CHANGE_TIME)) MAX_LAST_CHANGE_TS,
AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) AVG_REFRESH_TIME,
MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MAX_REFRESH_TIME,
MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_REFRESH_TIME, LAST_REFRESH_TIME)) MIN_REFRESH_TIME,
AVG(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) AVG_CHANGE_TIME,
MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MAX_CHANGE_TIME,
MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) MIN_CHANGE_TIME,
SUM(OUTPUT_ROWS) TOTAL_OUTPUT_ROWS,
(MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) - MIN(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME))) / MAX(TIMESTAMPDIFF(MICROSECOND, FIRST_CHANGE_TIME, LAST_CHANGE_TIME)) SKEWNESS,
SUM(STARTS) TOTAL_RESCAN_TIMES,
SVR_IP,
SVR_PORT,
MAX(OTHERSTAT_1_VALUE) MAX_STAT_1,
MIN(OTHERSTAT_1_VALUE) MIN_STAT_1,
AVG(OTHERSTAT_1_VALUE) AVG_STAT_1,
MAX(OTHERSTAT_2_VALUE) MAX_STAT_2,
MIN(OTHERSTAT_2_VALUE) MIN_STAT_2,
AVG(OTHERSTAT_2_VALUE) AVG_STAT_2,
MAX(OTHERSTAT_3_VALUE) MAX_STAT_3,
MIN(OTHERSTAT_3_VALUE) MIN_STAT_3,
AVG(OTHERSTAT_3_VALUE) AVG_STAT_3,
MAX(OTHERSTAT_4_VALUE) MAX_STAT_4,
MIN(OTHERSTAT_4_VALUE) MIN_STAT_4,
AVG(OTHERSTAT_4_VALUE) AVG_STAT_4,
MAX(OTHERSTAT_5_VALUE) MAX_STAT_5,
MIN(OTHERSTAT_5_VALUE) MIN_STAT_5,
AVG(OTHERSTAT_5_VALUE) AVG_STAT_5,
MAX(OTHERSTAT_6_VALUE) MAX_STAT_6,
MIN(OTHERSTAT_6_VALUE) MIN_STAT_6,
AVG(OTHERSTAT_6_VALUE) AVG_STAT_6,
TRUNCATE(AVG(DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
TRUNCATE(AVG(DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
TRUNCATE(AVG(USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
oceanbase.gv$sql_plan_monitor
where
trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
GROUP BY
PLAN_LINE_ID,PLAN_OPERATION,SVR_IP,SVR_PORT
ORDER BY
PLAN_LINE_ID ASC, MAX_CHANGE_TIME ASC, SVR_IP, SVR_PORT;
线程级
select
PLAN_DEPTH,/*0*/
SVR_IP,
SVR_PORT,
PROCESS_NAME,
PLAN_LINE_ID,
PLAN_OPERATION, /*5*/
OUTPUT_ROWS,
STARTS RESCAN_TIMES,
FIRST_REFRESH_TIME,
LAST_REFRESH_TIME,
FIRST_CHANGE_TIME,/*10*/
LAST_CHANGE_TIME,
UNIX_TIMESTAMP(FIRST_REFRESH_TIME) FIRST_REFRESH_TS,
UNIX_TIMESTAMP(LAST_REFRESH_TIME) LAST_REFRESH_TS,
UNIX_TIMESTAMP(LAST_REFRESH_TIME) - UNIX_TIMESTAMP(FIRST_REFRESH_TIME) REFRESH_TS,
UNIX_TIMESTAMP(FIRST_CHANGE_TIME) FIRST_CHANGE_TS, /*15*/
UNIX_TIMESTAMP(LAST_CHANGE_TIME) LAST_CHANGE_TS,
UNIX_TIMESTAMP(LAST_CHANGE_TIME) - UNIX_TIMESTAMP(FIRST_CHANGE_TIME) CHANGE_TS,
OTHERSTAT_1_ID,
OTHERSTAT_1_VALUE,
OTHERSTAT_2_ID, /*20*/
OTHERSTAT_2_VALUE,
OTHERSTAT_3_ID,
OTHERSTAT_3_VALUE,
OTHERSTAT_4_ID,
OTHERSTAT_4_VALUE, /*25*/
OTHERSTAT_5_ID,
OTHERSTAT_5_VALUE,
OTHERSTAT_6_ID,
OTHERSTAT_6_VALUE,
TRUNCATE((DB_TIME)/1000000000.0/2.5, 4) MY_DB_TIME,
TRUNCATE((DB_TIME-USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_CPU_TIME,
TRUNCATE((USER_IO_WAIT_TIME)/1000000000.0/2.5, 4) MY_IO_TIME
from
oceanbase.gv$sql_plan_monitor
where
trace_id = 'YB420A01FA9D-000626C2C73BF28D-0-0'
ORDER BY
PLAN_LINE_ID ASC, SVR_IP, SVR_PORT, CHANGE_TS, PROCESS_NAME ASC;
报告生成时间: 2024-11-21 11:05:36