Speed up packetin throttling
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / device / DeviceContextImpl.java
index b7e8d6477a881a2290c3e675c2ef505f8f67d3c4..d24e4c8426d33ee4bf2f4a8fca02b75980eaee2a 100644 (file)
@@ -9,34 +9,36 @@ package org.opendaylight.openflowplugin.impl.device;
 
 import com.google.common.annotations.VisibleForTesting;
 import com.google.common.base.Preconditions;
-import com.google.common.util.concurrent.SettableFuture;
+import com.google.common.util.concurrent.FutureCallback;
+import com.google.common.util.concurrent.Futures;
+import com.google.common.util.concurrent.ListenableFuture;
 import io.netty.util.HashedWheelTimer;
 import io.netty.util.Timeout;
 import java.math.BigInteger;
-import java.util.ArrayList;
+import java.util.Collection;
 import java.util.HashMap;
-import java.util.Iterator;
+import java.util.HashSet;
 import java.util.List;
 import java.util.Map;
-import java.util.TreeMap;
-import java.util.concurrent.atomic.AtomicLong;
 import javax.annotation.Nonnull;
 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
 import org.opendaylight.controller.md.sal.binding.api.NotificationService;
 import org.opendaylight.controller.md.sal.binding.api.ReadTransaction;
 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
+import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
+import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
+import org.opendaylight.openflowplugin.api.openflow.connection.OutboundQueueProvider;
 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
 import org.opendaylight.openflowplugin.api.openflow.device.DeviceState;
 import org.opendaylight.openflowplugin.api.openflow.device.MessageTranslator;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
 import org.opendaylight.openflowplugin.api.openflow.device.TranslatorLibrary;
 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
-import org.opendaylight.openflowplugin.api.openflow.device.exception.DeviceDataException;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextClosedHandler;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceDisconnectedHandler;
-import org.opendaylight.openflowplugin.api.openflow.device.listener.OpenflowMessageListenerFacade;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
 import org.opendaylight.openflowplugin.api.openflow.md.core.SwitchConnectionDistinguisher;
 import org.opendaylight.openflowplugin.api.openflow.md.core.TranslatorKey;
 import org.opendaylight.openflowplugin.api.openflow.registry.flow.DeviceFlowRegistry;
@@ -44,10 +46,10 @@ import org.opendaylight.openflowplugin.api.openflow.registry.group.DeviceGroupRe
 import org.opendaylight.openflowplugin.api.openflow.registry.meter.DeviceMeterRegistry;
 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
 import org.opendaylight.openflowplugin.impl.common.NodeStaticReplyTranslatorUtil;
+import org.opendaylight.openflowplugin.impl.device.listener.MultiMsgCollectorImpl;
 import org.opendaylight.openflowplugin.impl.registry.flow.DeviceFlowRegistryImpl;
 import org.opendaylight.openflowplugin.impl.registry.group.DeviceGroupRegistryImpl;
 import org.opendaylight.openflowplugin.impl.registry.meter.DeviceMeterRegistryImpl;
-import org.opendaylight.openflowplugin.impl.services.RequestContextUtil;
 import org.opendaylight.openflowplugin.openflow.md.core.session.SwitchConnectionCookieOFImpl;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnector;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeConnectorId;
@@ -71,9 +73,6 @@ import org.opendaylight.yangtools.yang.binding.ChildOf;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
-import org.opendaylight.yangtools.yang.common.RpcError;
-import org.opendaylight.yangtools.yang.common.RpcResult;
-import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -83,70 +82,82 @@ import org.slf4j.LoggerFactory;
 public class DeviceContextImpl implements DeviceContext {
 
     private static final Logger LOG = LoggerFactory.getLogger(DeviceContextImpl.class);
-    public static final String DEVICE_DISCONNECTED = "Device disconnected.";
+
+    // TODO: watermarks should be derived from effective rpc limit (75%|95%)
+    private static final int PACKETIN_LOW_WATERMARK = 15000;
+    private static final int PACKETIN_HIGH_WATERMARK = 19000;
+    // TODO: drain factor should be parametrized
+    public static final float REJECTED_DRAIN_FACTOR = 0.25f;
 
     private final ConnectionContext primaryConnectionContext;
     private final DeviceState deviceState;
     private final DataBroker dataBroker;
-    private final XidGenerator xidGenerator;
     private final HashedWheelTimer hashedWheelTimer;
-    private Map<Long, RequestContext> requests = new TreeMap();
-
     private final Map<SwitchConnectionDistinguisher, ConnectionContext> auxiliaryConnectionContexts;
     private final TransactionChainManager txChainManager;
-    private TranslatorLibrary translatorLibrary;
-    private OpenflowMessageListenerFacade openflowMessageListenerFacade;
     private final DeviceFlowRegistry deviceFlowRegistry;
     private final DeviceGroupRegistry deviceGroupRegistry;
     private final DeviceMeterRegistry deviceMeterRegistry;
-    private Timeout barrierTaskTimeout;
-    private NotificationService notificationService;
-    private final MessageSpy<Class> messageSpy;
-    private DeviceDisconnectedHandler deviceDisconnectedHandler;
-    private List<DeviceContextClosedHandler> closeHandlers = new ArrayList<>();
+    private final Collection<DeviceContextClosedHandler> closeHandlers = new HashSet<>();
+    private final PacketInRateLimiter packetInLimiter;
+    private final MessageSpy messageSpy;
     private NotificationPublishService notificationPublishService;
-
+    private DeviceDisconnectedHandler deviceDisconnectedHandler;
+    private NotificationService notificationService;
+    private TranslatorLibrary translatorLibrary;
+    private OutboundQueue outboundQueueProvider;
+    private Timeout barrierTaskTimeout;
 
     @VisibleForTesting
     DeviceContextImpl(@Nonnull final ConnectionContext primaryConnectionContext,
                       @Nonnull final DeviceState deviceState,
                       @Nonnull final DataBroker dataBroker,
                       @Nonnull final HashedWheelTimer hashedWheelTimer,
-                      @Nonnull final MessageSpy _messageSpy) {
+                      @Nonnull final MessageSpy _messageSpy, OutboundQueueProvider outboundQueueProvider) {
         this.primaryConnectionContext = Preconditions.checkNotNull(primaryConnectionContext);
         this.deviceState = Preconditions.checkNotNull(deviceState);
         this.dataBroker = Preconditions.checkNotNull(dataBroker);
         this.hashedWheelTimer = Preconditions.checkNotNull(hashedWheelTimer);
-        xidGenerator = new XidGenerator();
-        txChainManager = new TransactionChainManager(dataBroker, hashedWheelTimer, 500L, 500L);
+        this.outboundQueueProvider = Preconditions.checkNotNull(outboundQueueProvider);
+        txChainManager = new TransactionChainManager(dataBroker, deviceState);
         auxiliaryConnectionContexts = new HashMap<>();
         deviceFlowRegistry = new DeviceFlowRegistryImpl();
         deviceGroupRegistry = new DeviceGroupRegistryImpl();
         deviceMeterRegistry = new DeviceMeterRegistryImpl();
         messageSpy = _messageSpy;
+
+        this.packetInLimiter = new PacketInRateLimiter(primaryConnectionContext.getConnectionAdapter(),
+                PACKETIN_LOW_WATERMARK, PACKETIN_HIGH_WATERMARK, messageSpy, REJECTED_DRAIN_FACTOR);
     }
 
     /**
      * This method is called from {@link DeviceManagerImpl} only. So we could say "posthandshake process finish"
      * and we are able to set a scheduler for an automatic transaction submitting by time (0,5sec).
      */
-    void submitTransaction() {
-        txChainManager.enableSubmit();
-        txChainManager.submitTransaction();
+    void initialSubmitTransaction() {
+        txChainManager.initialSubmitWriteTransaction();
     }
 
     @Override
-    public <M extends ChildOf<DataObject>> void onMessage(final M message, final RequestContext requestContext) {
-        // TODO Auto-generated method stub
+    public Long getReservedXid() {
+        return outboundQueueProvider.reserveEntry();
+    }
 
+    @Override
+    public <M extends ChildOf<DataObject>> void onMessage(final M message, final RequestContext<?> requestContext) {
+        // TODO Auto-generated method stub
     }
 
     @Override
     public void addAuxiliaryConenctionContext(final ConnectionContext connectionContext) {
-        final SwitchConnectionDistinguisher connectionDistinguisher = new SwitchConnectionCookieOFImpl(connectionContext.getFeatures().getAuxiliaryId());
+        final SwitchConnectionDistinguisher connectionDistinguisher = createConnectionDistinguisher(connectionContext);
         auxiliaryConnectionContexts.put(connectionDistinguisher, connectionContext);
     }
 
+    private static SwitchConnectionDistinguisher createConnectionDistinguisher(final ConnectionContext connectionContext) {
+        return new SwitchConnectionCookieOFImpl(connectionContext.getFeatures().getAuxiliaryId());
+    }
+
     @Override
     public void removeAuxiliaryConenctionContext(final ConnectionContext connectionContext) {
         // TODO Auto-generated method stub
@@ -173,6 +184,11 @@ public class DeviceContextImpl implements DeviceContext {
         txChainManager.addDeleteOperationTotTxChain(store, path);
     }
 
+    @Override
+    public boolean submitTransaction() {
+        return txChainManager.submitWriteTransaction();
+    }
+
     @Override
     public ConnectionContext getPrimaryConnectionContext() {
         return primaryConnectionContext;
@@ -183,42 +199,6 @@ public class DeviceContextImpl implements DeviceContext {
         return auxiliaryConnectionContexts.get(new SwitchConnectionCookieOFImpl(cookie.longValue()));
     }
 
-    @Override
-    public Xid getNextXid() {
-        return xidGenerator.generate();
-    }
-
-    @Override
-    public RequestContext lookupRequest(Xid xid) {
-        return requests.get(xid.getValue());
-    }
-
-    @Override
-    public int getNumberOfOutstandingRequests() {
-        return requests.size();
-    }
-
-    @Override
-    public void hookRequestCtx(final Xid xid, final RequestContext requestFutureContext) {
-        requests.put(xid.getValue(), requestFutureContext);
-    }
-
-    @Override
-    public RequestContext unhookRequestCtx(Xid xid) {
-        return requests.remove(xid.getValue());
-    }
-
-    @Override
-    public void attachOpenflowMessageListener(final OpenflowMessageListenerFacade openflowMessageListenerFacade) {
-        this.openflowMessageListenerFacade = openflowMessageListenerFacade;
-        primaryConnectionContext.getConnectionAdapter().setMessageListener(openflowMessageListenerFacade);
-    }
-
-    @Override
-    public OpenflowMessageListenerFacade getOpenflowMessageListenerFacade() {
-        return openflowMessageListenerFacade;
-    }
-
     @Override
     public DeviceFlowRegistry getDeviceFlowRegistry() {
         return deviceFlowRegistry;
@@ -236,94 +216,17 @@ public class DeviceContextImpl implements DeviceContext {
 
     @Override
     public void processReply(final OfHeader ofHeader) {
-        final RequestContext requestContext = requests.get(ofHeader.getXid());
-        if (null != requestContext) {
-            final SettableFuture replyFuture = requestContext.getFuture();
-            requests.remove(ofHeader.getXid());
-            RpcResult<OfHeader> rpcResult;
-            if (ofHeader instanceof Error) {
-                //TODO : this is the point, where we can discover that add flow operation failed and where we should
-                //TODO : remove this flow from deviceFlowRegistry
-                final Error error = (Error) ofHeader;
-                final String message = "Operation on device failed with xid "+ofHeader.getXid()+".";
-                rpcResult = RpcResultBuilder
-                        .<OfHeader>failed()
-                        .withError(RpcError.ErrorType.APPLICATION, message, new DeviceDataException(message, error))
-                        .build();
-                messageSpy.spyMessage(ofHeader.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_FAILURE);
-            } else {
-                rpcResult = RpcResultBuilder
-                        .<OfHeader>success()
-                        .withResult(ofHeader)
-                        .build();
-                messageSpy.spyMessage(ofHeader.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_SUCCESS);
-            }
-
-            replyFuture.set(rpcResult);
-            try {
-                requestContext.close();
-            } catch (final Exception e) {
-                LOG.warn("Closing RequestContext failed: {}", e.getMessage());
-                LOG.debug("Closing RequestContext failed.. ", e);
-            }
+        if (ofHeader instanceof Error) {
+            messageSpy.spyMessage(ofHeader.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_FAILURE);
         } else {
-            LOG.warn("Can't find request context registered for xid : {}. Type of reply: {}. From address: {}", ofHeader.getXid(), ofHeader.getClass().getName(),
-                    getPrimaryConnectionContext().getConnectionAdapter().getRemoteAddress());
+            messageSpy.spyMessage(ofHeader.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_SUCCESS);
         }
     }
 
     @Override
     public void processReply(final Xid xid, final List<MultipartReply> ofHeaderList) {
-        final RequestContext requestContext = requests.get(xid.getValue());
-        if (null != requestContext) {
-            final SettableFuture replyFuture = requestContext.getFuture();
-            requests.remove(xid.getValue());
-            final RpcResult<List<MultipartReply>> rpcResult = RpcResultBuilder
-                    .<List<MultipartReply>>success()
-                    .withResult(ofHeaderList)
-                    .build();
-            replyFuture.set(rpcResult);
-            for (MultipartReply multipartReply : ofHeaderList) {
-                messageSpy.spyMessage(multipartReply.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_FAILURE);
-            }
-
-            try {
-                requestContext.close();
-            } catch (final Exception e) {
-                LOG.warn("Closing RequestContext failed: {}", e.getMessage());
-                LOG.debug("Closing RequestContext failed.. ", e);
-            }
-        } else {
-            LOG.warn("Can't find request context registered for xid : {}. Type of reply: MULTIPART. From address: {}", xid.getValue(),
-                    getPrimaryConnectionContext().getConnectionAdapter().getRemoteAddress());
-        }
-    }
-
-    @Override
-    public void processException(final Xid xid, final DeviceDataException deviceDataException) {
-
-        LOG.trace("Processing exception for xid : {}", xid.getValue());
-
-        final RequestContext requestContext = requests.get(xid.getValue());
-
-        if (null != requestContext) {
-            final SettableFuture replyFuture = requestContext.getFuture();
-            requests.remove(xid.getValue());
-            final RpcResult<List<OfHeader>> rpcResult = RpcResultBuilder
-                    .<List<OfHeader>>failed()
-                    .withError(RpcError.ErrorType.APPLICATION, String.format("Message processing failed : %s", deviceDataException.getError()), deviceDataException)
-                    .build();
-            replyFuture.set(rpcResult);
-            messageSpy.spyMessage(deviceDataException.getClass(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_FAILURE);
-            try {
-                requestContext.close();
-            } catch (final Exception e) {
-                LOG.warn("Closing RequestContext failed: ", e);
-                LOG.debug("Closing RequestContext failed..", e);
-            }
-        } else {
-            LOG.warn("Can't find request context registered for xid : {}. Exception message {}",
-                    xid.getValue(), deviceDataException.getMessage());
+        for (final MultipartReply multipartReply : ofHeaderList) {
+            messageSpy.spyMessage(multipartReply.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_FAILURE);
         }
     }
 
@@ -349,6 +252,7 @@ public class DeviceContextImpl implements DeviceContext {
         } else if (portStatus.getReason().equals(PortReason.OFPPRDELETE)) {
             addDeleteToTxChain(LogicalDatastoreType.OPERATIONAL, iiToNodeConnector);
         }
+        submitTransaction();
     }
 
     private KeyedInstanceIdentifier<NodeConnector, NodeConnectorKey> provideIIToNodeConnector(final long portNo, final short version) {
@@ -360,14 +264,50 @@ public class DeviceContextImpl implements DeviceContext {
 
     @Override
     public void processPacketInMessage(final PacketInMessage packetInMessage) {
-        messageSpy.spyMessage(packetInMessage.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_SUCCESS);
+        messageSpy.spyMessage(packetInMessage.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH);
+        final ConnectionAdapter connectionAdapter = getPrimaryConnectionContext().getConnectionAdapter();
+
         final TranslatorKey translatorKey = new TranslatorKey(packetInMessage.getVersion(), PacketIn.class.getName());
         final MessageTranslator<PacketInMessage, PacketReceived> messageTranslator = translatorLibrary.lookupTranslator(translatorKey);
         final PacketReceived packetReceived = messageTranslator.translate(packetInMessage, this, null);
-        if (!notificationPublishService.offerNotification(packetReceived)){
-            LOG.debug("Notification offer refused by notification service.");
+
+        if (packetReceived == null) {
+            LOG.debug("Received a null packet from switch {}", connectionAdapter.getRemoteAddress());
+            return;
+        }
+
+        if (!packetInLimiter.acquirePermit()) {
+            LOG.debug("Packet limited");
+            // TODO: save packet into emergency slot if possible
+            // FIXME: some other counter
+            messageSpy.spyMessage(packetReceived.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_TRANSLATE_SRC_FAILURE);
+            return;
+        }
+
+        final ListenableFuture<? extends Object> offerNotification = notificationPublishService.offerNotification(packetReceived);
+        if (NotificationPublishService.REJECTED.equals(offerNotification)) {
+            LOG.debug("notification offer rejected");
+            messageSpy.spyMessage(packetReceived.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_TRANSLATE_SRC_FAILURE);
+            packetInLimiter.drainLowWaterMark();
+            packetInLimiter.releasePermit();
+            return;
         }
 
+        Futures.addCallback(offerNotification, new FutureCallback<Object>() {
+            @Override
+            public void onSuccess(final Object result) {
+                messageSpy.spyMessage(packetReceived.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_PUBLISHED_SUCCESS);
+                packetInLimiter.releasePermit();
+            }
+
+            @Override
+            public void onFailure(final Throwable t) {
+                messageSpy.spyMessage(packetReceived.getImplementedInterface(), MessageSpy.STATISTIC_GROUP.FROM_SWITCH_NOTIFICATION_REJECTED);
+                LOG.debug("notification offer failed: {}", t.getMessage());
+                LOG.trace("notification offer failed..", t);
+                packetInLimiter.releasePermit();
+            }
+        });
     }
 
     @Override
@@ -389,70 +329,39 @@ public class DeviceContextImpl implements DeviceContext {
     public void close() throws Exception {
         deviceState.setValid(false);
 
-        LOG.trace("Removing node {} from operational DS.", getDeviceState().getNodeId());
-        addDeleteToTxChain(LogicalDatastoreType.OPERATIONAL, getDeviceState().getNodeInstanceIdentifier());
-
         deviceGroupRegistry.close();
         deviceFlowRegistry.close();
         deviceMeterRegistry.close();
 
-        if (primaryConnectionContext.getConnectionAdapter().isAlive()) {
-            primaryConnectionContext.setConnectionState(ConnectionContext.CONNECTION_STATE.RIP);
-            primaryConnectionContext.getConnectionAdapter().disconnect();
-        }
-        for (Map.Entry<Long, RequestContext> entry : requests.entrySet()) {
-            RequestContextUtil.closeRequestContextWithRpcError(entry.getValue(), DEVICE_DISCONNECTED);
+        primaryConnectionContext.close();
+        for (final ConnectionContext connectionContext : auxiliaryConnectionContexts.values()) {
+            connectionContext.close();
         }
-        for (ConnectionContext connectionContext : auxiliaryConnectionContexts.values()) {
-            if (connectionContext.getConnectionAdapter().isAlive()) {
-                connectionContext.getConnectionAdapter().disconnect();
-            }
-        }
-        for (DeviceContextClosedHandler deviceContextClosedHandler : closeHandlers) {
+
+        for (final DeviceContextClosedHandler deviceContextClosedHandler : closeHandlers) {
             deviceContextClosedHandler.onDeviceContextClosed(this);
         }
 
+        txChainManager.close();
     }
 
     @Override
     public void onDeviceDisconnected(final ConnectionContext connectionContext) {
-        if (this.getPrimaryConnectionContext().equals(connectionContext)) {
+        if (getPrimaryConnectionContext().equals(connectionContext)) {
             try {
                 close();
-            } catch (Exception e) {
+            } catch (final Exception e) {
                 LOG.trace("Error closing device context.");
             }
             if (null != deviceDisconnectedHandler) {
                 deviceDisconnectedHandler.onDeviceDisconnected(connectionContext);
             }
         } else {
-            auxiliaryConnectionContexts.remove(connectionContext);
-        }
-    }
-
-
-    private class XidGenerator {
-
-        private final AtomicLong xid = new AtomicLong(0);
-
-        public Xid generate() {
-            return new Xid(xid.incrementAndGet());
+            final SwitchConnectionDistinguisher connectionDistinguisher = createConnectionDistinguisher(connectionContext);
+            auxiliaryConnectionContexts.remove(connectionDistinguisher);
         }
     }
 
-    @Override
-    public RequestContext extractNextOutstandingMessage(final long barrierXid) {
-        RequestContext nextMessage = null;
-        final Iterator<Long> keyIterator = requests.keySet().iterator();
-        if (keyIterator.hasNext()) {
-            final Long oldestXid = keyIterator.next();
-            if (oldestXid < barrierXid) {
-                nextMessage = requests.remove(oldestXid);
-            }
-        }
-        return nextMessage;
-    }
-
     @Override
     public void setCurrentBarrierTimeout(final Timeout timeout) {
         barrierTaskTimeout = timeout;
@@ -485,17 +394,19 @@ public class DeviceContextImpl implements DeviceContext {
 
     @Override
     public void addDeviceContextClosedHandler(final DeviceContextClosedHandler deviceContextClosedHandler) {
-        this.closeHandlers.add(deviceContextClosedHandler);
+        closeHandlers.add(deviceContextClosedHandler);
     }
 
     @Override
-    public void startGatheringOperationsToOneTransaction() {
-        txChainManager.startGatheringOperationsToOneTransaction();
+    public void onPublished() {
+        primaryConnectionContext.getConnectionAdapter().setPacketInFiltering(false);
+        for (final ConnectionContext switchAuxConnectionContext : auxiliaryConnectionContexts.values()) {
+            switchAuxConnectionContext.getConnectionAdapter().setPacketInFiltering(false);
+        }
     }
 
     @Override
-    public void commitOperationsGatheredInOneTransaction() {
-        txChainManager.commitOperationsGatheredInOneTransaction();
+    public MultiMsgCollector getMultiMsgCollector(final RequestContext<List<MultipartReply>> requestContext) {
+        return new MultiMsgCollectorImpl(this, requestContext);
     }
-
 }