<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Each successful ets:lookup call is a copy operation of the entire
    term<br>
    from ETS to the process heap.<br>
    <br>
    If you are comparing ets:lookup of big map<br>
    to sending big map in message then I would expect<br>
    ets:lookup to win, as copy_shallow (used by ets:lookup)<br>
    is optimized to be faster than copy_struct (used by send).<br>
    <br>
    <br>
    /Sverker, Erlang/OTP<br>
    <br>
    <br>
    <div class="moz-cite-prefix">On 03/15/2016 09:52 AM, Alex Howle
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAC6pP+6Qoae-0E56k2Qs=UkUrBs81QG_MMQZzOXJ2V8n7Ekb9w@mail.gmail.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=windows-1252">
      <p dir="ltr">I've been experiencing an issue and was wondering if
        anyone else has any experience in this area. I've stripped back
        the problem to its bare bones for the purposes of this mail.</p>
      <p dir="ltr"> </p>
      <p dir="ltr">I have an Erlang 18.1 application that uses ETS to
        store an Erlang map structure. Using erts_debug:flat_size/1 I
        can approximate the map's size to be 1MB. Upon the necessary
        activity trigger the application spawns about 25 short-lived
        processes to perform the main work of the application. This
        activity trigger is fired roughly 9 times a second under normal
        operating conditions. Each of these 25 processes performs 1 x
        ets:lookup/2 calls to read from the map.</p>
      <p dir="ltr"> </p>
      <p dir="ltr">What I've found is that the above implementation has
        a CPU profile that is quite "expensive" - each of the CPU cores
        (40 total comprised of 2 Processors with 10 hyperthreaded cores)
        frequently runs at 100%. The machine in question also has 32GB
        RAM of which about 9GB is used at peak. There is no swap usage
        whatsoever. Examination shows that copy_shallow is performing
        the most work.</p>
      <p dir="ltr"> </p>
      <p dir="ltr">After changing the implementation so that the 25
        spawned processes no longer read from the ETS table to retrieve
        the map structure and, instead the map is passed to the
        processes on spawn, the CPU usage on the server is considerably
        lower.<br>
      </p>
      <p dir="ltr"> </p>
      <p dir="ltr">Can anyone offer advice as to why I'm seeing the
        differing CPU profiles?<br>
      </p>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
erlang-questions mailing list
<a class="moz-txt-link-abbreviated" href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a>
<a class="moz-txt-link-freetext" href="http://erlang.org/mailman/listinfo/erlang-questions">http://erlang.org/mailman/listinfo/erlang-questions</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>