Re: Eventual consistency and 1 to n relationships

"Greg Young [email protected] [domaindrivendesign]" <[email protected]> Thu, 11 Jan 2018 15:16:03 +0000
Newsgroups gmane.comp.programming.domain-driven-design
Message-ID <CAC9RQtjbf1wOwB1xK_0rAOE__VXvkChDKh=q0v3feOKNuUbOuA@mail.gmail.com>
--001a113d061a51fe66056281a097
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

This is more a rabbitmq discussion than a ddd question but when dealing
with a system like rabbitmq you must make operations idempotent. The
message will be delivered at-least-once. As such you need to handle the
possibility that you may receive it 5 times and be able to realize you have
already done the action (to ignore the message). If you are using a
transactional data storage it will do this handling for you providing a
reasonable level of isolation.

On Wed, Jan 10, 2018 at 5:32 PM, dirk g [email protected]
[domaindrivendesign] <[email protected]> wrote:

>
>
> Hi,
>
> In my domain I have Product and Order aggregates. Orders reference
> Products.
> This is a 1 to n relationship, so a Product has many Orders and Orders
> belong to a Product. When a Product is discontinued a ProductDiscontinued
> event is published and all Orders that belong to this Product must be
> cancelled. So there's an adapter that receives the ProductDiscontinued
> event
> via RabbitMQ. The adapters then delegates cancelling Orders to an
> application service. How can I achieve that a single Order is cancelled i=
n
> a
> single transaction? Should the adapter iterate over all Orders for the
> discontinued Product and call the application service for every single
> Order? Should I just ignore that I modify more than one aggregate in a
> single transaction and call the application service just once with a list
> of
> all affected OrderIds? Or is there a better solution?
>
> Many thanks,
>
> Dirk
>
> --
> Sent from: http://domain-driven-design.3010926.n2.nabble.com/
>=20
>



--=20
Studying for the Turing test

--001a113d061a51fe66056281a097
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable





<head>

<style type=3D"text/css">
<!--

/* start of attachment style */
       .ygrp-photo-title{
         clear: both;
         font-size: smaller;
         height: 15px;
         overflow: hidden;
         text-align: center;
         width: 75px;
       }
       div.ygrp-photo{
         background-position: center;
         background-repeat: no-repeat;
         background-color: white;
         border: 1px solid black;
         height: 62px;
         width: 62px;
       }

       div.photo-title=20
         a,
         div.photo-title a:active,
         div.photo-title a:hover,
         div.photo-title a:visited {
           text-decoration: none;=20
       }

       div.attach-table div.attach-row {
         clear: both;
       }

       div.attach-table div.attach-row div {
         float: left;
         /* margin: 2px;*/
       }

       p {
         clear: both;
         padding: 15px 0 3px 0;
	 overflow: hidden;
       }

       div.ygrp-file {
         width: 30px;
         valign: middle;
       }
       div.attach-table div.attach-row div div a {
         text-decoration: none;
       }

       div.attach-table div.attach-row div div span {
         font-weight: normal;
       }

       div.ygrp-file-title {
         font-weight: bold;
       }
 /* end of attachment style */
        -->
        </style>
        </head>
<html>
<head>
<style type=3D"text/css">
<!--
#ygrp-mkp {
  border: 1px solid #d8d8d8;
  font-family: Arial;
  margin: 10px 0;
  padding: 0 10px;
}

#ygrp-mkp hr {
  border: 1px solid #d8d8d8;
}

#ygrp-mkp #hd {
  color: #628c2a;
  font-size: 85%;
  font-weight: 700;
  line-height: 122%;
  margin: 10px 0;
}

#ygrp-mkp #ads {
  margin-bottom: 10px;
}

#ygrp-mkp .ad {
  padding: 0 0;
}

#ygrp-mkp .ad p {
  margin: 0;
}

#ygrp-mkp .ad a {
  color: #0000ff;
  text-decoration: none;
}
-->
</style>
</head>
<body>



<!-- |**|begin egp html banner|**| -->

<br><br>

<!-- |**|end egp html banner|**| -->


<div dir=3D"ltr">This is more a rabbitmq discussion than a ddd question but=
 when dealing with a system like rabbitmq you must make operations idempote=
nt. The message will be delivered at-least-once. As such you need to handle=
 the possibility that you may receive it 5 times and be able to realize you=
 have already done the action (to ignore the message). If you are using a t=
ransactional data storage it will do this handling for you providing a reas=
onable level of isolation.</div><div class=3D"gmail_extra"><br><div class=
=3D"gmail_quote">On Wed, Jan 10, 2018 at 5:32 PM, dirk g <a href=3D"mailto:=
[email protected]">[email protected]</a> [domaindrivendesign] <span dir=3D"=
ltr">&lt;<a href=3D"mailto:[email protected]" target=3D"_b=
lank">[email protected]</a>&gt;</span> wrote:<br><blockquo=
te class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc so=
lid;padding-left:1ex">


<u></u>









=20
<div style=3D"background-color:#fff">
<span style=3D"display:none">=C2=A0</span>


<div id=3D"m_-8938984999225717814ygrp-mlmsg">
  <div id=3D"m_-8938984999225717814ygrp-msg">


    <div id=3D"m_-8938984999225717814ygrp-text">
=20=20=20=20=20=20
=20=20=20=20=20=20
      <p>Hi,<br>
<br>
In my domain I have Product and Order aggregates. Orders reference Products=
..<br>
This is a 1 to n relationship, so a Product has many Orders and Orders<br>
belong to a Product. When a Product is discontinued a ProductDiscontinued<b=
r>
event is published and all Orders that belong to this Product must be<br>
cancelled. So there&#39;s an adapter that receives the ProductDiscontinued =
event<br>
via RabbitMQ. The adapters then delegates cancelling Orders to an<br>
application service. How can I achieve that a single Order is cancelled in =
a<br>
single transaction? Should the adapter iterate over all Orders for the<br>
discontinued Product and call the application service for every single<br>
Order? Should I just ignore that I modify more than one aggregate in a<br>
single transaction and call the application service just once with a list o=
f<br>
all affected OrderIds? Or is there a better solution?<br>
<br>
Many thanks,<br>
<br>
Dirk<br>
<br>
--<br>
Sent from: <a href=3D"http://domain-driven-design.3010926.n2.nabble.com/" t=
arget=3D"_blank">http://domain-driven-design.<wbr>3010926.n2.nabble.com/</a=
><br>
</p>

    </div>
=20=20=20=20=20

=20=20=20=20
    <div style=3D"color:#fff;height:0"></div>


</div>



=20=20






</blockquote></div><br><br clear=3D"all"><div><br></div>-- <br><div class=
=3D"gmail_signature" data-smartmail=3D"gmail_signature"><div dir=3D"ltr">St=
udying for the Turing test</div></div>
</div>




<!-- |**|begin egp html banner|**| -->

<br>


<br>

<!-- |**|end egp html banner|**| -->


<div width=3D"1" style=3D"color: white; clear: both;"/>__._,_.___</div>

=20=20=20=20=20=20
=20=20

=20=20=20=20
    <div id=3D"fromDMARC" style=3D"clear:both; margin-top: 10px;">
         <hr style=3D"height:2px ; border-width:0; color:#E3E3E3; backgroun=
d-color:#E3E3E3;">
         Posted by: Greg Young &lt;[email protected]&gt;         <hr =
style=3D"height:2px ; border-width:0; color:#E3E3E3; background-color:#E3E3=
E3;">
    </div>
<!-- Start Recommendations -->
<!-- End Recommendations -->



<!-- |**|begin egp html banner|**| -->

  <img src=3D"http://geo.yahoo.com/serv?s=3D97476590/grpId=3D8116923/grpspI=
d=3D1705007181/msgId=3D24842/stime=3D1515683765" width=3D"1" height=3D"1"> =
<br>

<!-- |**|end egp html banner|**| -->

=20=20
<!-- |**|begin egp html banner|**| -->

<br>



=20=20=20
=20=20=20=20=20
=20
        <!-- |**|begin egp html banner|**| -->
        <div id=3D"ygrp-vital" style=3D"background-color: #f2f2f2; font-fam=
ily: Verdana; font-size: 10px; margin-bottom: 10px; padding: 10px;">

        <span id=3D"vithd" style=3D"font-weight: bold; color: #333; text-tr=
ansform: uppercase; "><a href=3D"https://groups.yahoo.com/neo/groups/domain=
drivendesign/info;_ylc=3DX3oDMTJlZ292cXNyBF9TAzk3MzU5NzE0BGdycElkAzgxMTY5Mj=
MEZ3Jwc3BJZAMxNzA1MDA3MTgxBHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTUxNTY4Mzc2NQ--"=
 style=3D"text-decoration: none;">Visit Your Group</a></span>

     <ul style=3D"list-style-type: none; margin: 0; padding: 0; display: in=
line;">
            <li style=3D"border-right: 1px solid #000; font-weight: 700; di=
splay: inline; padding: 0 5px; margin-left: 0;">
      <span class=3D"cat"><a href=3D"https://groups.yahoo.com/neo/groups/do=
maindrivendesign/members/all;_ylc=3DX3oDMTJmZmZ0bm9hBF9TAzk3MzU5NzE0BGdycEl=
kAzgxMTY5MjMEZ3Jwc3BJZAMxNzA1MDA3MTgxBHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzE1MT=
U2ODM3NjU-" style=3D"text-decoration: none;">New Members</a></span>
      <span class=3D"ct" style=3D"color: #ff7900;">1</span>
    </li>
                                              </ul>
  </div>


<div id=3D"ft" style=3D"font-family: Arial; font-size: 11px; margin-top: 5p=
x; padding: 0 2px 0 0; clear: both;">
  <a href=3D"https://groups.yahoo.com/neo;_ylc=3DX3oDMTJkbDQzZDIxBF9TAzk3ND=
c2NTkwBGdycElkAzgxMTY5MjMEZ3Jwc3BJZAMxNzA1MDA3MTgxBHNlYwNmdHIEc2xrA2dmcARzd=
GltZQMxNTE1NjgzNzY1" style=3D"float: left;"><img src=3D"http://l.yimg.com/r=
u/static/images/yg/img/email/new_logo/logo-groups-137x15.png" height=3D"15"=
 width=3D"137" alt=3D"Yahoo! Groups" style=3D"border: 0;"/></a>
  <div style=3D"color: #747575; float: right;"> &bull; <a href=3D"https://i=
nfo.yahoo.com/privacy/us/yahoo/groups/details.html" style=3D"text-decoratio=
n: none;">Privacy</a> &bull; <a href=3D"mailto:domaindrivendesign-unsubscri=
[email protected]?subject=3DUnsubscribe" style=3D"text-decoration: none;">=
Unsubscribe</a> &bull; <a href=3D"https://info.yahoo.com/legal/us/yahoo/uto=
s/terms/" style=3D"text-decoration: none;">Terms of Use</a> </div>
</div>

<!-- |**|end egp html banner|**| -->

  </div> <!-- ygrp-msg -->

=20=20=20


  <br>

<!-- |**|end egp html banner|**| -->


<div style=3D"color: white; clear: both;"/>__,_._,___</div>
</body>

</html>

--001a113d061a51fe66056281a097--