<div dir="ltr">I have concerns about the performance of the Electrum server software as well.  It seems to load data one block at a time (which normally makes sense) and I think it is even single threaded on transactions inside the block.<div><br></div><div>To try to addresses these issues, I made my own implementation of the electrum server.  It doesn&#39;t support UTXO (yet) but happily interacts with all the clients I&#39;ve tested.  It is heavily multithreaded, uses mongodb as a key value store and bitcoinj for block and transaction parsing.<br><div><br></div><div><a href="https://github.com/fireduck64/jelectrum" target="_blank">https://github.com/fireduck64/jelectrum</a><br></div><div><br></div><div>You can hit a running instance at:</div><div>b.1209k.com:50002:s<br></div><div>or</div><div>b.1209k.com:50001:t<br></div><div><br></div><div>A synced node uses 347G of mongodb storage.  </div><div><br></div><div>Here are the recent blocks imported, with number of transactions and import time.</div><div><a href="http://pastebin.com/cfW3C2L6">http://pastebin.com/cfW3C2L6</a><br></div><div>These times are based on having mongodb on SSD.</div><div>The CPU is 8 core Intel(R) Xeon(R) CPU E5430  @ 2.66GHz</div><div><br></div><div>I&#39;d be happy to help with anything you need to evaluate it.</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Jul 23, 2015 at 9:01 AM Slurms MacKenzie via bitcoin-dev &lt;<a href="mailto:bitcoin-dev@lists.linuxfoundation.org" target="_blank">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Similar to the Bitcoin Node Speed Test, this is a quick quantitative look at how the Electrum server software handles under load. The Electrum wallet is extremely popular, and the distributed servers which power it are all hosted by volunteers without budget. The server requires a fully indexed Bitcoin Core daemon running, and produces sizable external index in order to allow SPV clients to quickly retrieve their history.<br>
<br>
    3.9G    electrum/utxo<br>
    67M     electrum/undo<br>
    19G     electrum/hist<br>
    1.4G    electrum/addr<br>
    24G     electrum/<br>
<br>
Based on my own logs produced by the electrum-server console, it takes this server (Xeon, lots of memory, 7200 RPM RAID) approximately 3.7 minutes per megabyte of block to process into the index. This seems to hold true through the 10 or so blocks I have in my scroll buffer, the contents of blocks seem to be of approximately the same processing load. Continuing this trend with the current inter-block time of 9.8 minutes, an electrum-server instance running on modest-high end dedicated server is able to support up to 2.64 MB block sizes before permanently falling behind the chain.<br>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href="mailto:bitcoin-dev@lists.linuxfoundation.org" target="_blank">bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href="https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" rel="noreferrer" target="_blank">https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev</a><br>
</blockquote></div></div>