<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Times New Roman; font-size: 12pt; color: #000000'>If you have many processes then code loading can take a noticeable time. The code server must purge old versions of a module which it does by going through all processes checking each one if it running the old code and if so killing it. I don't know if this blocks all the schedulers and if so why, but it can take a noticeable time to do.<br><br>Robert<br><br><br><hr id="zwchr"><blockquote style="border-left:2px solid rgb(16, 16, 255);margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;">ETS is no good for our use case, we have ~60MB worth of uncompressed serialized terms (nested gb_trees mostly) that we need live in a given request. We traverse it very quickly and end up with a very small list of terms as the result (essentially a filter on a nested structure). A no-copy ets would work, but since the work is so short lived and code is tightly associated to this structure I think that our current solution is appropriate as long as we can fix the blocking. <br>
<br>"declare constant" may also work, but I think it is more practical to just make code loading better in the short term (which has other benefits). You could implement "declare constant" on top of the code loader, we have a mochiglobal module in mochiweb that basically serves that purpose. <br>
<br>Using a module is a convenient way to give concurrent access to the data to hundreds of simultaneous processes with minimal serialization. <br><br>-bob<br><br>On Saturday, November 5, 2011, Björn-Egil Dahlberg <<a href="mailto:wallentin.dahlberg@gmail.com" target="_blank">wallentin.dahlberg@gmail.com</a>> wrote:<br>
> Yes, it is a simple (and currently only way) to push data to the constant pool. You could use ETS instead. It would of course also remove data from the heap and reduce GC copy strain but introduce copy on any read.<br>
> Björn Gustavsson talked about introducing a "declare constant" function earlier but i don't know if he has done any work on it. The use case was the same as for you, pushing lookup structures from gb_trees and gb_sets. But, solving code loading would probably be a better prioritization.<br>
> I would like to think that the garbage collector should solve this. Data sets which are read only and live are tenured to a generational heap and not included in minor gc phases. Putting it in a constant removes it all together of course but i would like the garbage collector to identify and handle this with generational strategies. The trade off is generational heaps linger and may hold dead data longer than necessary.<br>
>  <br>><br>> Den 5 november 2011 21:30 skrev Bob Ippolito <<a href="mailto:bob@redivi.com" target="_blank">bob@redivi.com</a>>:<br>>><br>>> We abuse code loading "upgrades" so that we can share memory and reduce GC pressure for large data structures that do not change quickly (once every few minutes). Works great except for all the blocking!<br>
>><br>>> On Saturday, November 5, 2011, Björn-Egil Dahlberg <<a href="mailto:wallentin.dahlberg@gmail.com" target="_blank">wallentin.dahlberg@gmail.com</a>> wrote:<br>>> > There is no other locking for code loading than blocking. This is an optimization of course since locking mechanism overhead is removed from the equation. Code loading is not used all that often in the normal cases besides startups and upgrades.<br>
>> > That being said, there are plans to remove this "stop-the-world" strategy since it is blocking other strategies and optimizations. Also, we are well aware of that blocking does degrade performance when loading new modules and does not agree with our concurrency policy.<br>
>> > I think we can lessen the time blocked in the current implementation but the blocking strategy should (and probably will) be removed. Nothing planned as of yet though.<br>>> > Regards,<br>>> > Björn-Egil<br>
>> ><br>>> > 2011/11/5 Bob Ippolito <<a href="mailto:bob@redivi.com" target="_blank">bob@redivi.com</a>><br>>> >><br>>> >> We've found a bottleneck in some of our systems, when we load in large<br>
>> >> new modules there is a noticeable pause (1+ seconds) that blocks all<br>>> >> of the schedulers. It looks like this is because the<br>>> >> erlang:load_binary/2 BIF blocks SMP before it does anything at all.<br>
>> >><br>>> >> It would be a big win for us if more of this happened without blocking<br>>> >> the VM, there's a lot of busy work in loading a module that shouldn't<br>>> >> need any locking. For example, decompressing and decoding the literal<br>
>> >> table is probably where our code spends almost all of its time.<br>>> >><br>>> >> There aren't a lot of comments for why it needs to lock the VM,<br>>> >> especially for the whole of load_binary. Are there any hidden gotchas<br>
>> >> in here that I should know about before giving it a try? I'm unable to<br>>> >> find much where the block is actually necessary, but I am not very<br>>> >> familiar with the BEAM implementation yet.<br>
>> >><br>>> >> I expect that the erts_export_consolidate, insert_new_code and<br>>> >> final_touch are really the only things that need so much<br>>> >> serialization, and maybe the set_default_trace_pattern… is there<br>
>> >> anything big that I'm missing? It seems that breaking up<br>>> >> erts_load_module into two functions (one to do all the decoding<br>>> >> without the erts_smp_block_system(0), and the other to do the<br>
>> >> integration work with the block) would be straightforward.<br>>> >><br>>> >> -bob<br>>> >> _______________________________________________<br>>> >> erlang-questions mailing list<br>
>> >> <a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>>> >> <a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
>> ><br>>> ><br>>
<br>_______________________________________________<br>erlang-questions mailing list<br>erlang-questions@erlang.org<br>http://erlang.org/mailman/listinfo/erlang-questions<br></blockquote><br></div></body></html>