Re: Reactive REST

"Erik Wilde [email protected] [rest-discuss]" <[email protected]> Sat, 17 May 2014 13:07:36 -0700
Newsgroups gmane.comp.web.services.rest
Message-ID <[email protected]>
--6chq9bolGlrnFm1296bzGLhHLxfwjwvGUw2u1gf
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

hello michael.

On 2014-05-17, 10:33, Michael Schuerig [email protected] 
[rest-discuss] wrote:
> The "reactive" buzzword has been conspicuously absent from this list.
> I'll try to fill this much needed gap.

haven't really seen it buzzing that much, but if you had to give it at 
least a little substance, how would you explain what it means? just 
something that's driven by events rather than clients?

> I've recently watched a presentation by Jafar Husain
>    http://www.infoq.com/presentations/netflix-reactive-rest
> where he describes something he calls "Reactive REST". I agree on the
> "reactive", however I have doubts about the "REST". In this particular
> case, all communication between a client and a server is over persistent
> connection to a single endpoint. If there's anything resembling
> resources, they are not identified by URIs. The persistent connection
> IMHO is a case of "conversational" state that REST is rather opposed to.
> No HATEOAS in sight.

sounds like websockets (maybe not technically, but as the general idea). 
to me, REST is on a different level than this plumbing. in the same way 
as you can do REST and notREST over HTTP, the same probably applies to 
any of the alternative interaction styles. as you point out, REST has 
more (and more abstract) constraints than just the protocol that's used.

> What I'm pondering is whether an API can be RESTful and reactive at the
> same time or if is impossible as a matter of principle. AFAICT, a
> reactive API requires some way for the server to send events to the
> client. I don't think polling qualifies, which leaves a persistent
> connection. In effect, the server has to keep some amount of state for
> each session.

not sure i agree that polling or long polling are the only (or best) 
alternatives. there's quite of stuff to be done in the area that i often 
refer to as "reverse REST": clients subscribe, and then there's a push 
model. there are a variety of push protocols (PuSH, MQTT, APN, C2DM, 
sMAP) out there, but none so far has taken over the world.

it'll be interesting to see how this plays out in june at the w3c's web 
of things workshop. clearly, in sensor scenarios, it would be very 
convenient to have these kind of alerts, have them in a loosely coupled 
and scalable way, and have them via protocols that are universally 
supported. it may be the case that w3c will start working on something 
in that space, but we'll know more after that workshop.

http://www.w3.org/2014/02/wot/

http://dret.net/netdret/publications#wil14a is a position paper that we 
have submitted to this workshop. it may be the case that activity 
streams take over as the new atom. we'll see about that, but they are 
not all that different, and they use JSON, so all is good.

and in the same way as you can layer PuSH on atom to have a push model 
on top of atom's data model, you can do the same for activity streams. 
that might be the way open push protocols are going: you can poll for 
activities, or you can subscribe to an activity hub that pushes to you 
whatever you has subscribed to.

in my eyes, this could still be RESTful, only that of course you would 
end up having more resources (such as subscriptions that need to be 
managed and so on).

anyway, a very good question, a very interesting field, and with the 
whole IoT/WoT movement now getting a serious hype push, maybe we'll get 
to something open, useful, and RESTful in the next couple of years.

> Keeping session state has traditionally been regarded as a hindrance to
> scalability. Has technology advanced so much, eg with asynchronous,
> event-driven ("reactive") servers, that this is no longer a problem?

just a question of cost. different protocols have different solutions 
(PuSH subscriptions time out automatically, sMAP subscriptions never 
time out), based on different scenarios. anything push-based is more 
expensive than pure pull, because services/hubs need to keep track of 
subscribers. but if the cost is smaller that the benefit, then this will 
happen one way or another.

> Frankly, I'm lacking experience with systems where this kind of
> scalability would be required, so I'd happily use persistent
> connections, at least to begin with. Nonetheless, I'm interested in your
> insights.

web of things scenarios simply cannot work with long polling. if you 
want to be connected to thousands of sensors in your building to figure 
out when one is telling you that there is a fire, then you cannot have 
open connections to all of them. the answer here is a layered 
architecture, maybe some of it hidden as implementation details (sensors 
just speaking MQTT to a hub), and other things exposed on the web level 
(you being able to subscribe to that hub and get alerts). many solutions 
have been built around this general pattern, but so far we lack a single 
and coherent answer where to draw the boundary between the 
implementation details and the open part, and what we should use for 
that open part. as mentioned above, maybe that workshop will bring 
together enough interested parties to start working on that issue.

cheers,

dret.

-- 
erik wilde | mailto:[email protected]  -  tel:+1-510-2061079 |
            | UC Berkeley  -  School of Information (ISchool) |
            | http://dret.net/netdret http://twitter.com/dret |

--6chq9bolGlrnFm1296bzGLhHLxfwjwvGUw2u1gf
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>






 
<body style="background-color: #fff;">
<span style="display:none">&nbsp;</span>

<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id="ygrp-mlmsg" style="position:relative;">
  <div id="ygrp-msg" style="z-index: 1;">
<!--~-|**|PrettyHtmlEndT|**|-~-->

    <div id="ygrp-text" >
      
      
      <p>hello michael.<br>
<br>
On 2014-05-17, 10:33, Michael Schuerig [email protected] <br>
[rest-discuss] wrote:<br>
&gt; The &quot;reactive&quot; buzzword has been conspicuously absent from this list.<br>
&gt; I&#39;ll try to fill this much needed gap.<br>
<br>
haven&#39;t really seen it buzzing that much, but if you had to give it at <br>
least a little substance, how would you explain what it means? just <br>
something that&#39;s driven by events rather than clients?<br>
<br>
&gt; I&#39;ve recently watched a presentation by Jafar Husain<br>
&gt;    http://www.infoq.com/presentations/netflix-reactive-rest<br>
&gt; where he describes something he calls &quot;Reactive REST&quot;. I agree on the<br>
&gt; &quot;reactive&quot;, however I have doubts about the &quot;REST&quot;. In this particular<br>
&gt; case, all communication between a client and a server is over persistent<br>
&gt; connection to a single endpoint. If there&#39;s anything resembling<br>
&gt; resources, they are not identified by URIs. The persistent connection<br>
&gt; IMHO is a case of &quot;conversational&quot; state that REST is rather opposed to.<br>
&gt; No HATEOAS in sight.<br>
<br>
sounds like websockets (maybe not technically, but as the general idea). <br>
to me, REST is on a different level than this plumbing. in the same way <br>
as you can do REST and notREST over HTTP, the same probably applies to <br>
any of the alternative interaction styles. as you point out, REST has <br>
more (and more abstract) constraints than just the protocol that&#39;s used.<br>
<br>
&gt; What I&#39;m pondering is whether an API can be RESTful and reactive at the<br>
&gt; same time or if is impossible as a matter of principle. AFAICT, a<br>
&gt; reactive API requires some way for the server to send events to the<br>
&gt; client. I don&#39;t think polling qualifies, which leaves a persistent<br>
&gt; connection. In effect, the server has to keep some amount of state for<br>
&gt; each session.<br>
<br>
not sure i agree that polling or long polling are the only (or best) <br>
alternatives. there&#39;s quite of stuff to be done in the area that i often <br>
refer to as &quot;reverse REST&quot;: clients subscribe, and then there&#39;s a push <br>
model. there are a variety of push protocols (PuSH, MQTT, APN, C2DM, <br>
sMAP) out there, but none so far has taken over the world.<br>
<br>
it&#39;ll be interesting to see how this plays out in june at the w3c&#39;s web <br>
of things workshop. clearly, in sensor scenarios, it would be very <br>
convenient to have these kind of alerts, have them in a loosely coupled <br>
and scalable way, and have them via protocols that are universally <br>
supported. it may be the case that w3c will start working on something <br>
in that space, but we&#39;ll know more after that workshop.<br>
<br>
http://www.w3.org/2014/02/wot/<br>
<br>
http://dret.net/netdret/publications#wil14a is a position paper that we <br>
have submitted to this workshop. it may be the case that activity <br>
streams take over as the new atom. we&#39;ll see about that, but they are <br>
not all that different, and they use JSON, so all is good.<br>
<br>
and in the same way as you can layer PuSH on atom to have a push model <br>
on top of atom&#39;s data model, you can do the same for activity streams. <br>
that might be the way open push protocols are going: you can poll for <br>
activities, or you can subscribe to an activity hub that pushes to you <br>
whatever you has subscribed to.<br>
<br>
in my eyes, this could still be RESTful, only that of course you would <br>
end up having more resources (such as subscriptions that need to be <br>
managed and so on).<br>
<br>
anyway, a very good question, a very interesting field, and with the <br>
whole IoT/WoT movement now getting a serious hype push, maybe we&#39;ll get <br>
to something open, useful, and RESTful in the next couple of years.<br>
<br>
&gt; Keeping session state has traditionally been regarded as a hindrance to<br>
&gt; scalability. Has technology advanced so much, eg with asynchronous,<br>
&gt; event-driven (&quot;reactive&quot;) servers, that this is no longer a problem?<br>
<br>
just a question of cost. different protocols have different solutions <br>
(PuSH subscriptions time out automatically, sMAP subscriptions never <br>
time out), based on different scenarios. anything push-based is more <br>
expensive than pure pull, because services/hubs need to keep track of <br>
subscribers. but if the cost is smaller that the benefit, then this will <br>
happen one way or another.<br>
<br>
&gt; Frankly, I&#39;m lacking experience with systems where this kind of<br>
&gt; scalability would be required, so I&#39;d happily use persistent<br>
&gt; connections, at least to begin with. Nonetheless, I&#39;m interested in your<br>
&gt; insights.<br>
<br>
web of things scenarios simply cannot work with long polling. if you <br>
want to be connected to thousands of sensors in your building to figure <br>
out when one is telling you that there is a fire, then you cannot have <br>
open connections to all of them. the answer here is a layered <br>
architecture, maybe some of it hidden as implementation details (sensors <br>
just speaking MQTT to a hub), and other things exposed on the web level <br>
(you being able to subscribe to that hub and get alerts). many solutions <br>
have been built around this general pattern, but so far we lack a single <br>
and coherent answer where to draw the boundary between the <br>
implementation details and the open part, and what we should use for <br>
that open part. as mentioned above, maybe that workshop will bring <br>
together enough interested parties to start working on that issue.<br>
<br>
cheers,<br>
<br>
dret.<br>
<br>
-- <br>
erik wilde | mailto:[email protected]  -  tel:&#43;1-510-2061079 |<br>
            | UC Berkeley  -  School of Information (ISchool) |<br>
            | http://dret.net/netdret http://twitter.com/dret |<br>
</p>

    </div>
     

    <!--~-|**|PrettyHtmlStart|**|-~-->
    <div style="color: #fff; height: 0;">__._,_.___</div>

          
  
 

    
    <div style="clear:both"> </div>

    <table cellspacing=4px style="margin-top: 20px; margin-bottom: 10px; color: #2D50FD;">
      <tbody>
        <tr>
          <td style="font-size: 12px; font-family: arial; font-weight: bold; padding: 7px 5px 5px;"  >
                          <a style="text-decoration: none; color: #2D50FD" href="https://groups.yahoo.com/neo/groups/rest-discuss/conversations/messages/19645;_ylc=X3oDMTJxZGNxc3RjBF9TAzk3MzU5NzE0BGdycElkAzQzMTkyNTUEZ3Jwc3BJZAMxNzA1NzAxMDE0BG1zZ0lkAzE5NjQ1BHNlYwNmdHIEc2xrA3JwbHkEc3RpbWUDMTQwMDM1NzA4Nw--?act=reply&messageNum=19645">Reply via web post</a>
                      </td>
          <td>&bull;</td>
          <td style="font-size: 12px; font-family: arial; padding: 7px 5px 5px;" >
            <a href="mailto:[email protected]?subject=Re%3A%20%5Brest-discuss%5D%20Reactive%20REST" style="text-decoration: none; color: #2D50FD;">
               Reply to sender            </a>
          </td>
          <td>&bull;</td>
          <td style="font-size: 12px; font-family: arial; padding: 7px 5px 5px;">
            <a href="mailto:[email protected]?subject=Re%3A%20%5Brest-discuss%5D%20Reactive%20REST" style="text-decoration: none; color: #2D50FD">
              Reply to group            </a>
          </td>
          <td>&bull;</td>
          <td style="font-size: 12px; font-family: arial; padding: 7px 5px 5px;" >
            <a href="https://groups.yahoo.com/neo/groups/rest-discuss/conversations/newtopic;_ylc=X3oDMTJlbG1hbGVlBF9TAzk3MzU5NzE0BGdycElkAzQzMTkyNTUEZ3Jwc3BJZAMxNzA1NzAxMDE0BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTQwMDM1NzA4Nw--" style="text-decoration: none; color: #2D50FD">Start a New Topic</a>
          </td>
          <td>&bull;</td>
          <td style="font-size: 12px; font-family: arial; padding: 7px 5px 5px;color: #2D50FD;" >
                            <a href="https://groups.yahoo.com/neo/groups/rest-discuss/conversations/topics/19643;_ylc=X3oDMTM2dDZla3ZwBF9TAzk3MzU5NzE0BGdycElkAzQzMTkyNTUEZ3Jwc3BJZAMxNzA1NzAxMDE0BG1zZ0lkAzE5NjQ1BHNlYwNmdHIEc2xrA3Z0cGMEc3RpbWUDMTQwMDM1NzA4NwR0cGNJZAMxOTY0Mw--" style="text-decoration: none; color: #2D50FD;">Messages in this topic</a>
                (3)
                      </td>
        </tr>
      </tbody>
    </table>

        
<div id="megaphoneModule">
            <hr style="height:2px ; border-width:0; color:#E3E3E3; background-color:#E3E3E3;">
        <div>
	     <div class="feature_intro">
            <div style="background-color:white;padding:0px 10px;">
                <div class="header" style="margin-right:10px;display:inline-block;width:400px;">
                    <a rel="nofollow" style="text-decoration:none;" target="_blank" href="https://groups.yahoo.com/neo;_ylc=X3oDMTExc2JuanI3BF9TAzk3MzU5NzE0BGNmMTADQ1AEc2VjA21lZ2FwaG9uZQ--"><div style="font-size:15px;line-height:20px;color:blue;">Just  launched ! Link preview on Yahoo Groups</div></a>
                    <div class="snippet" style="margin-top:5px;">Visit your Group on the web, simply paste the link to the article, photo or video you wish to share in the message you are composing.</div>
                </div>
                <div style="display:inline-block;vertical-align:top;margin-top:10px;">
                    
                    <a rel="nofollow" target="_blank" href="http://yahoogroups.tumblr.com/post/85014546066/bye-bye-blue-links-welcome-link-preview" name="lm_btn_url" style="text-decoration:none;">
                        <input type="button" class="lm-btn" value="Learn more" style="font-size:14px;vertical-align:middle;height:30px;cursor:pointer;margin-bottom:10px;width:100px;background-color:rgb(250, 250, 250);margin-right:10px;" name="lm_btn">
                    </a>
                    
                    
                    <a rel="nofollow" target="_blank" href="https://groups.yahoo.com/neo;_ylc=X3oDMTExc2JuanI3BF9TAzk3MzU5NzE0BGNmMTADQ1AEc2VjA21lZ2FwaG9uZQ--" name="try_btn_url" style="text-decoration:none;">
                        <input type="button" class="try-btn" value="Try it now" style="font-size:14px;vertical-align:middle;height:30px;cursor:pointer;margin-bottom:10px;width:100px;background-color:rgb(250, 250, 250);" name="try_btn">
                    </a>
                    
                </div>
            </div>
        </div>        </div>  
     
    <hr style="height:2px ; border-width:0; color:#E3E3E3; background-color:#E3E3E3;">
</div>

<!------- Start Nav Bar ------>




 

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

    <span id="vithd" style="font-weight: bold; color: #333; text-transform: uppercase; "><a href="https://groups.yahoo.com/neo/groups/rest-discuss/info;_ylc=X3oDMTJlaGtvZnI1BF9TAzk3MzU5NzE0BGdycElkAzQzMTkyNTUEZ3Jwc3BJZAMxNzA1NzAxMDE0BHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTQwMDM1NzA4Nw--" style="text-decoration: none;">Visit Your Group</a></span>

     <ul style="list-style-type: none; margin: 0; padding: 0; display: inline;">
                                                    </ul>
  </div>


<div id="ft" style="font-family: Arial; font-size: 11px; margin-top: 5px; padding: 0 2px 0 0; clear: both;">
  <a href="https://groups.yahoo.com/neo;_ylc=X3oDMTJkMDI1bzU2BF9TAzk3MzU5NzE0BGdycElkAzQzMTkyNTUEZ3Jwc3BJZAMxNzA1NzAxMDE0BHNlYwNmdHIEc2xrA2dmcARzdGltZQMxNDAwMzU3MDg3" style="float: left;"><img src="http://l.yimg.com/ru/static/images/yg/img/email/new_logo/logo-groups-137x15.png" height="15" width="137" alt="Yahoo! Groups" style="border: 0;"/></a>
  <div style="color: #747575; float: right;"> &bull; <a href="https://info.yahoo.com/privacy/us/yahoo/groups/details.html" style="text-decoration: none;">Privacy</a> &bull; <a href="mailto:[email protected]?subject=Unsubscribe" style="text-decoration: none;">Unsubscribe</a> &bull; <a href="https://info.yahoo.com/legal/us/yahoo/utos/terms/" style="text-decoration: none;">Terms of Use</a> </div>
</div>
<br>

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

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

 
  <!-- Sponsor -->
  <!-- |**|begin egp html banner|**| -->
  <div id="ygrp-sponsor" style="width:160px; float:right; clear:none; margin:0 0 25px 0; background: #fff;">

<!-- Start Recommendations -->
<div id="ygrp-reco">
     </div>
<!-- End Recommendations -->



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

  <div style="clear:both; color: #FFF; font-size:1px;">.</div>
</div>

  <img src="http://geo.yahoo.com/serv?s=97359714/grpId=4319255/grpspId=1705701014/msgId=19645/stime=1400357087" width="1" height="1"> <br>

<img src="http://y.analytics.yahoo.com/fpc.pl?ywarid=515FB27823A7407E&a=10001310322279&js=no&resp=img&cf10=CP" width="1" height="1"> 

<div style="color: #fff; height: 0;">__,_._,___</div>
<!--~-|**|PrettyHtmlEnd|**|-~-->

</body>

<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
  <style type="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;
}
  #ygrp-sponsor #ygrp-lc {
  font-family: Arial;
}

#ygrp-sponsor #ygrp-lc #hd {
  margin: 10px 0px;
  font-weight: 700;
  font-size: 78%;
  line-height: 122%;
}

#ygrp-sponsor #ygrp-lc .ad {
  margin-bottom: 10px;
  padding: 0 0;
}

  #actions {
    font-family: Verdana;
    font-size: 11px;
    padding: 10px 0;
  }

  #activity {
    background-color: #e0ecee;
    float: left;
    font-family: Verdana;
    font-size: 10px;
    padding: 10px;
  }

  #activity span {
    font-weight: 700;
  }

  #activity span:first-child {
    text-transform: uppercase;
  }

  #activity span a {
    color: #5085b6;
    text-decoration: none;
  }

  #activity span span {
    color: #ff7900;
  }

  #activity span .underline {
    text-decoration: underline;
  }

  .attach {
    clear: both;
    display: table;
    font-family: Arial;
    font-size: 12px;
    padding: 10px 0;
    width: 400px;
  }

  .attach div a {
    text-decoration: none;
  }

  .attach img {
    border: none;
    padding-right: 5px;
  }

  .attach label {
    display: block;
    margin-bottom: 5px;
  }

  .attach label a {
    text-decoration: none;
  }
  
  blockquote {
    margin: 0 0 0 4px;
  }

  .bold {
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
  }

  .bold a {
    text-decoration: none;
  }

  dd.last p a {
    font-family: Verdana;
    font-weight: 700;
  }

  dd.last p span {
    margin-right: 10px;
    font-family: Verdana;
    font-weight: 700;
  }

  dd.last p span.yshortcuts {
    margin-right: 0;
  }

  div.attach-table div div a {
    text-decoration: none;
  }

  div.attach-table {
    width: 400px;
  }

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

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

  div#ygrp-mlmsg #ygrp-msg p a span.yshortcuts {
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
  }

  .green {
    color: #628c2a;
  }

  .MsoNormal {
    margin: 0 0 0 0;
  }

  o {
    font-size: 0;
  }

  #photos div {
    float: left;
    width: 72px;
  }

  #photos div div {
    border: 1px solid #666666;
    height: 62px;
    overflow: hidden;
    width: 62px;
  }

  #photos div label {
    color: #666666;
    font-size: 10px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    width: 64px;
  }

  #reco-category {
    font-size: 77%;
  }

  #reco-desc {
    font-size: 77%;
  }

  .replbq {
    margin: 4px;
  }

  #ygrp-actbar div a:first-child {
   /* border-right: 0px solid #000;*/
    margin-right: 2px;
    padding-right: 5px;
  }

  #ygrp-mlmsg {
    font-size: 13px;
    font-family: Arial, helvetica,clean, sans-serif;
    *font-size: small;
    *font: x-small;
  }

  #ygrp-mlmsg table {
    font-size: inherit;
    font: 100%;
  }

  #ygrp-mlmsg select, input, textarea {
    font: 99% Arial, Helvetica, clean, sans-serif;
  }

  #ygrp-mlmsg pre, code {
    font:115% monospace;
    *font-size:100%;
  }

  #ygrp-mlmsg * {
    line-height: 1.22em;
  }

  #ygrp-mlmsg #logo {
    padding-bottom: 10px;
  }


  #ygrp-msg p a {
    font-family: Verdana;
  }

  #ygrp-msg p#attach-count span {
    color: #1E66AE;
    font-weight: 700;
  }

  #ygrp-reco #reco-head {
    color: #ff7900;
    font-weight: 700;
  }

  #ygrp-reco {
    margin-bottom: 20px;
    padding: 0px;
  }

  #ygrp-sponsor #ov li a {
    font-size: 130%;
    text-decoration: none;
  }

  #ygrp-sponsor #ov li {
    font-size: 77%;
    list-style-type: square;
    padding: 6px 0;
  } 

  #ygrp-sponsor #ov ul {
    margin: 0;
    padding: 0 0 0 8px;
  }

  #ygrp-text {
    font-family: Georgia;
  }

  #ygrp-text p {
    margin: 0 0 1em 0;
  }

  #ygrp-text tt {
    font-size: 120%;
  }

  #ygrp-vital ul li:last-child {
    border-right: none !important; 
  } 
  -->
  </style>
</head>

<!--~-|**|PrettyHtmlEnd|**|-~-->
</html>
<!-- end group email -->


--6chq9bolGlrnFm1296bzGLhHLxfwjwvGUw2u1gf--