Subscription not receives message for sometimes

I use websocket like that, sometimes I can get the right message, but sometimes I cant get any message. e.g. I made 6 new order today but no “ORDER_TRADE_UPDATE” return ,what the probable reasons for that?

BinanceClient.futureSubsptClient.subscribeUserDataEvent(listenKey, ((event) -> {
            //更新资金、持仓信息
            if(event.getEventType().equals("ACCOUNT_UPDATE")){
                for(BalanceUpdate balanceUpdate:event.getAccountUpdate().getBalances()){
                    MarketCache.futureBalanceCache.put(balanceUpdate.getAsset(),balanceUpdate);
                }
                for(PositionUpdate positionUpdate:event.getAccountUpdate().getPositions()){
                    MarketCache.futurePositionCache.put(positionUpdate.getSymbol(),positionUpdate);
                }
//                logger.info("future accout_update event:{}",event);
                //更新订单信息
            }else if(event.getEventType().equals("ORDER_TRADE_UPDATE")){
                OrderUpdate orderUpdate = event.getOrderUpdate();
                MarketCache.futureOrderCache.put(orderUpdate.getOrderId(),orderUpdate);
                logger.info("future trade_update event: orderstatus={},clientId={},price={},qty={},event={}",
                        orderUpdate.getOrderStatus(),orderUpdate.getClientOrderId(),orderUpdate.getAvgPrice(),

Looks more like a java coding problem…
What error do you get?

no error, only not receive any message.

You can get ACCOUNT_UPDATE but no ORDER_TRADE_UPDATE event using above code?

I can not get either message sometimes, but sometimes I can get message normally. And I use offical java-api, I place my service in Tokyo, but I usually get socket error: which method can get the tick fast and accurate, http or websocket? , like
2021-03-22 17:49:44 [ERROR] - [Sub][1] Unexpected error: Socket closed
so maybe a problem in binance service problem?

though the in network is about 16M(bits/s),and I subscription all tick, so maybe the all tick makes traffic jam?
image

There’s no such thing as official api and can you answer my question directly?
You can get ACCOUNT_UPDATE but no ORDER_TRADE_UPDATE event using above code?