<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="109301" data-post-id="109301">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="benwilson512" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/benwilson512/120/1457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  benwilson512
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Author of Craft GraphQL APIs in Elixir with Absinthe</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Yes that’s correct. It’ll still hit KubeDNS but it lowers the number of different domains that the KubeDNS service will try to resolve. All of my other comments about KubeDNS still apply though, this is just a handy optimization.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109301" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/12">Post #11</a>
	                </div>
	            </div>
              <div id="likers-container-109301" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109301"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #11"></div>
  </section>
</div>
    <div class="postbit" id="109303" data-post-id="109303">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="9mm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/120/7475_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  9mm
                      <span class="op-star" title="Thread Starter">
                        <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                      </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Hey everyone I’m going through these replies slowly, sorry if I don’t respond to you right away.</p>
<p>I am <strong>1000% grateful and thankful</strong> for all your guys and gals input/feedback. I’m processing all of it currently, and it’s taking me awhile to research each reply</p>
<p>In my pod YAML this is what was there:</p>
<pre><code>resources:
  requests:
    cpu: 100m
</code></pre>
<p>But thats the only limit</p>
<p>This is interesting though. I’m reading here: <a href="https://cloud.google.com/blog/products/gcp/kubernetes-best-practices-resource-requests-and-limits" rel="noopener nofollow ugc">https://cloud.google.com/blog/products/gcp/kubernetes-best-practices-resource-requests-and-limits</a></p>
<p>I originally wanted the LOWEST number of apps (because they all log independently and its going to create a database bottleneck if i have 100 things logging at once). If it HAS to come to that, so be it, but I’d like to avoid it.</p>
<p>What if I put it at <code>64000m</code>? it seems to a bad idea according to this document because erlang may not know how to deal with that many CPU’s. does that sound accurate?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109303" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/13">Post #12</a>
	                </div>
	            </div>
              <div id="likers-container-109303" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109303"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #12"></div>
  </section>
</div>
    <div class="postbit" id="109305" data-post-id="109305">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="outlog" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  outlog
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="9mm" data-post="13" data-topic="18988">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/48/7475_2.png" class="avatar"> 9mm:</div>
<blockquote>
<p>In my pod YAML this is what was there:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">resources:
  requests:
    cpu: 100m
</code></pre>
</blockquote>
</aside>
<p>looks like you found the reason! that is 0.1 cpu per pod.. explains your test results.</p>
<p>read</p><aside class="onebox allowlistedgeneric" data-onebox-src="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/">
  <header class="source">
      <img src="https://kubernetes.io/images/kubernetes.png" class="site-icon" alt="" width="512" height="512">

      <a href="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/" target="_blank" rel="noopener nofollow ugc">Kubernetes</a>
  </header>

  <article class="onebox-body">
    

<h3><a href="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-default-namespace/" target="_blank" rel="noopener nofollow ugc">Configure Default Memory Requests and Limits for a Namespace</a></h3>

  <p>Define a default memory resource limit for a namespace, so that every new Pod in that namespace has a memory resource limit configured.</p>


  </article>

  <div class="onebox-metadata">
    
    
  </div>

  <div style="clear: both"></div>
</aside>
<p>
and</p><aside class="onebox allowlistedgeneric" data-onebox-src="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-default-namespace/">
  <header class="source">
      <img src="https://kubernetes.io/images/kubernetes.png" class="site-icon" alt="" width="512" height="512">

      <a href="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-default-namespace/" target="_blank" rel="noopener nofollow ugc">Kubernetes</a>
  </header>

  <article class="onebox-body">
    

<h3><a href="https://kubernetes.io/docs/tasks/administer-cluster/manage-resources/cpu-default-namespace/" target="_blank" rel="noopener nofollow ugc">Configure Default CPU Requests and Limits for a Namespace</a></h3>

  <p>Define a default CPU resource limits for a namespace, so that every new Pod in that namespace has a CPU resource limit configured.</p>


  </article>

  <div class="onebox-metadata">
    
    
  </div>

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

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109305" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/14">Post #13</a>
	                </div>
	            </div>
              <div id="likers-container-109305" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109305"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #13"></div>
  </section>
</div>
    <div class="postbit" id="109306" data-post-id="109306">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="benwilson512" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/benwilson512/120/1457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  benwilson512
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Author of Craft GraphQL APIs in Elixir with Absinthe</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Phoenix has been tested on boxes up to 128 cores and it scaled linearly, so 64 should be fine. I’d consider manually specifying the number of schedulers because I don’t know off the top of my head if erlang can tell what you’ve allocated for the pod or not. Usually you want twice as many schedulers as cores. So if you do 6400m CPUs then do <code>+S 128</code> in your vm.args file.</p>
<p>The final main thing to note for the 1 erlang pod route is to figure out if any of the libraries you’re using have a pool of fixed size. You’ll want to make sure to increase its size.</p>
<p><a class="mention" href="/u/outlog" rel="nofollow">@outlog</a> requests and limits are different things. Doing 0.1 CPU requests doesn’t limit it to 0.1 CPU, but it does mean that it may be throttled up to that if other pods want CPU. The way to achieve the highest Quality Of Service guarantees in K8s is to specify BOTH an identical CPU limit and request value.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109306" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/15">Post #14</a>
	                </div>
	            </div>
              <div id="likers-container-109306" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109306"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #14"></div>
  </section>
</div>
    <div class="postbit" id="109307" data-post-id="109307">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="9mm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/120/7475_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  9mm
                      <span class="op-star" title="Thread Starter">
                        <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                      </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Ok I actually tried running it on the instance itself (via SSH) rather than using bash IN the container:</p>
<pre><code>Ip:
    Forwarding: 1
    416024035 total packets received
    2 with invalid addresses
    415262118 forwarded
    0 incoming packets discarded
    761912 incoming packets delivered
    416003450 requests sent out
    390 outgoing packets dropped
    1 dropped because of missing route
Icmp:
    22 ICMP messages received
    3 input ICMP message failed
    ICMP input histogram:
        destination unreachable: 10
        echo requests: 11
        echo replies: 1
    11 ICMP messages sent
    0 ICMP messages failed
    ICMP output histogram:
        echo replies: 11
IcmpMsg:
        InType0: 1
        InType3: 10
        InType8: 11
        OutType0: 11
Tcp:
    48909 active connection openings
    16003 passive connection openings
    41 failed connection attempts
    8270 connection resets received
    15 connections established
    761425 segments received
    840810 segments sent out
    225 segments retransmitted
    0 bad segments received
    2994 resets sent
Udp:
    467 packets received
    0 packets to unknown port received
    0 packet receive errors
    470 packets sent
    0 receive buffer errors
    0 send buffer errors
UdpLite:
TcpExt:
    33 resets received for embryonic SYN_RECV sockets
    2 packets pruned from receive queue because of socket buffer overrun
    9925 TCP sockets finished time wait in fast timer
    31097 delayed acks sent
    2 delayed acks further delayed because of locked socket
    Quick ack mode was activated 3 times
    272044 packet headers predicted
    160323 acknowledgments not containing data payload received
    101516 predicted acknowledgments
    TCPSackRecovery: 7
    Detected reordering 321 times using SACK
    1 congestion windows recovered without slow start after partial ack
    22 fast retransmits
    TCPTimeouts: 66
    TCPLossProbes: 147
    TCPDSACKOldSent: 3
    TCPDSACKRecv: 152
    9 connections reset due to unexpected data
    5 connections reset due to early user close
    TCPDSACKIgnoredNoUndo: 139
    TCPSackMerged: 7
    TCPSackShiftFallback: 302
    TCPRcvCoalesce: 70011
    TCPOFOQueue: 566
    TCPAutoCorking: 9
    TCPFromZeroWindowAdv: 1713
    TCPToZeroWindowAdv: 1713
    TCPWantZeroWindowAdv: 1078
    TCPSynRetrans: 56
    TCPOrigDataSent: 395019
    TCPHystartTrainDetect: 2
    TCPHystartTrainCwnd: 654
    TCPKeepAlive: 6156
IpExt:
    InMcastPkts: 6
    OutMcastPkts: 10
    InOctets: 359183513039
    OutOctets: 717144072828
    InMcastOctets: 570
    OutMcastOctets: 730
    InNoECTPkts: 479288616
    InECT0Pkts: 1
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109307" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/16">Post #15</a>
	                </div>
	            </div>
              <div id="likers-container-109307" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109307"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #15"></div>
  </section>
</div>
    <div class="postbit" id="109308" data-post-id="109308">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="9mm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/120/7475_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  9mm
                      <span class="op-star" title="Thread Starter">
                        <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                      </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Awesome thanks!! And btw I still havent read your other reply I know it was a really good reply (abou tthe schedulers and vm.args) so I’m saving it a bit to do some of these easier replies first.</p>
<p>This is such good info, thank you I am eternally grateful <img src="https://forum.elixirforum.com/images/emoji/apple/folded_hands/3.png?v=15" title=":folded_hands:t3:" class="emoji" alt=":folded_hands:t3:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109308" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/17">Post #16</a>
	                </div>
	            </div>
              <div id="likers-container-109308" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109308"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #16"></div>
  </section>
</div>
    <div class="postbit" id="109310" data-post-id="109310">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="9mm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/120/7475_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  9mm
                      <span class="op-star" title="Thread Starter">
                        <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                      </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Awesome! I will read those – but just to be clear would it be OK to put it at 64000m? or even “no limit” (can I delete the entire resource line)?</p>
<p>I was testing different instance sizes and I know it wont even schedule a pod into a node w/o enough resources. It would be great to move the limit entirely so its just 1 app per node regardless of size</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109310" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/18">Post #17</a>
	                </div>
	            </div>
              <div id="likers-container-109310" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109310"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #17"></div>
  </section>
</div>
    <div class="postbit" id="109311" data-post-id="109311">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="benwilson512" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/benwilson512/120/1457_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  benwilson512
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Author of Craft GraphQL APIs in Elixir with Absinthe</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Well the goal right now is debugging, so let’s focus on that right now. Debugging is about making sure we create as few factors as possible. How many nodes are you running?  To get the highest QOS within K8s you want to do equal requests and limits. I would probably do 3200 for both so that you can also allocate a CPU or two for KubeDNS. Then manually set <code>+S 64</code>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109311" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/19">Post #18</a>
	                </div>
	            </div>
              <div id="likers-container-109311" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109311"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #18"></div>
  </section>
</div>
    <div class="postbit" id="109313" data-post-id="109313">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="chrismcg" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/chrismcg/120/671_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  chrismcg
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I really don’t know enough to read that output I’m afraid. In the container you could try <code>netstat -atn | grep TIME_WAIT | wc -l</code>. This assumes that the output of netstat -atn is similar to my local linux box and <code>grep</code> and <code>wc</code> are there too. If they’re not you could copy the output and grep it locally. The idea is just to see how many TCP connections are around and see if that corresponds in some way to the number where you start seeing problems.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109313" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/20">Post #19</a>
	                </div>
	            </div>
              <div id="likers-container-109313" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109313"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #19"></div>
  </section>
</div>
    <div class="postbit" id="109314" data-post-id="109314">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="9mm" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/9mm/120/7475_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  9mm
                      <span class="op-star" title="Thread Starter">
                        <img alt="OP" class="op-star-icon" src="/assets/thread-icons/thread-icon-thread-starter-df91e872.png" />
                      </span>
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Ok great I’ll experiment with this and with your vm.args reply right now.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="109314" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/difficult-debugging-problem/18988/21">Post #20</a>
	                </div>
	            </div>
              <div id="likers-container-109314" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="109314"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #20"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/18988/load_more?page=3">Load more posts (71 remaining)</a>
</div></template></turbo-stream>