vote up 1 vote down star
1

In my application I'm sending data over a "cheap" but rate-limited connection. In case data throughput exceeds a threshold (the available bandwidth) I want to upgrade to a more "expensive" but uncapped connection, and downgrade when the throughput falls below a second threshold.

So, given two thresholds A and B which determine when to upgrade or downgrade the connection, and a method like this:

public void SendData(byte[] buffer, int offset, int length)
{
    this.UpgradeOrDowngrade(length);
    if (this.upgraded)
        this.expensiveConnection.SendData(buffer, offset, length);
    else
        this.cheapConnection.SendData(buffer, offset, length);
}

private void UpgradeOrDowngrade(int lastDataChunkLength)
{
    var currentThroughput = UpdateCurrentThroughput(lastDataChunkLength);

    if currentThroughput > A && !this.upgraded)
    {
        this.expensiveConnection.Open();
        this.upgraded = true;
    }
    else if currentThroughput < B && this.upgraded)
    {
        this.expensiveConnection.Close();
        this.upgraded = false;
    }
}

how do I know when to open and close expensiveConnection, i.e. how do I measure the current throughput?

One problem is that UpgradeOrDowngrade is obviously not called if no data is sent for some time. If the connection is idle and expensiveConnection is open, there's nothing that will close it.

I also want to avoid opening expensiveConnection too often, as opening it is actually more expensive than keeping it open. Any hints?

flag

50% accept rate

1 Answer

vote up 0 vote down

It is not transparent to the application in the TCP protocol if errors occur on the protocol level and how much data is really sent including protocol overhead - which is small per message on the one end, but can add up if you have plenty small messages.
Nevertheless I would generate a seperate class for the decision with connection which you choose and start first with a second as an interval to count the sent bytes.
You would then keep the lastMeasureStart as DateTime and the sentBytes. If there is more than one second between lastMeasureStart and now , you reset lastMeasureStart and sentBytes. Then you add the current length and compare against the threshold.
You may use Wireshark during the beginning to check TCP Errors to see the bandwith errors and to find reasonable byte per second values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.