<h3>Description</h3>
<p>Implement a new TM logic to distribute calls to contacts belonging to the same subscriber similar to the weight mechanism that is used in lcr module. This mechanism should support primary/backup, load-sharing or a combination of both.</p>
<h3>Expected behavior</h3>
<p>Currently, with the existing serial forking using q-value:</p>
<ul>
<li>if the q-values are different, the devices will ring serially but always in the same order</li>
<li>if the q-values are equals, the devices will ring in parallel</li>
</ul>
<p>With the new mechanism, instead, I have to be able, for example, to register 2 devices and send:</p>
<ul>
<li>the 50% of the call to device 1 and then to device 2 as a backup</li>
<li>the 50% of the call to device 2 and then to device 1 as a backup</li>
</ul>
<h3>Possible Solutions</h3>
<p>A possible approach is to extend the existing load_contact function and re-use the q-value as a weight.<br>
For example:</p>
<ul>
<li>contact 1 has Q value 1</li>
<li>contact 2 has Q value 0.5</li>
<li>contact 3 has Q value 0.5</li>
<li>contact 4 has Q value 0<br>
Then kamailio distributes the calls using the following proportion:<br>
Q : total_Q = call_prob : 100<br>
So:</li>
<li>contact 1 has probability to ring of 50% (1 * 100 / 2)</li>
<li>contact 2 has probability to ring of 25% (0.5 * 100 / 2)</li>
<li>contact 3 has probability to ring of 25% (0.5 * 100 / 2)</li>
<li>contact 4 has probability to ring of 0 (0 * 100 / 2) but it is used as backup option if all other contacts fail</li>
</ul>
<p>This should solves the limitations of serial forking and allows to achieve equal or predictable weight-based call termination distribution.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/issues/2167?email_source=notifications&email_token=ABO7UZL3RIFFQCFT2VBMCRDQXITG3A5CNFSM4JWS5J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H6SLUMQ">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABO7UZNKSBLR6NMR6ORIH4TQXITG3ANCNFSM4JWS5J7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/ABO7UZJ2LJMJNS4UQEZYK2LQXITG3A5CNFSM4JWS5J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H6SLUMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/kamailio/kamailio/issues/2167?email_source=notifications\u0026email_token=ABO7UZL3RIFFQCFT2VBMCRDQXITG3A5CNFSM4JWS5J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H6SLUMQ",
"url": "https://github.com/kamailio/kamailio/issues/2167?email_source=notifications\u0026email_token=ABO7UZL3RIFFQCFT2VBMCRDQXITG3A5CNFSM4JWS5J72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H6SLUMQ",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>