2018-11-02 00:08:12
You are telling it to load 90g?
Fireduck
2018-11-02 00:09:39
no, that's the RSS size at the time of hitting the heap limit
Rotonen
2018-11-02 00:10:14
i was pulling a 128GB field into memory as a memfield and previously never hit the heap size, usually gave it like 135G or 140G max heap size
Rotonen
2018-11-02 00:10:55
i was watching it in a split screen and saw the RSS crawl up as it read off the disk and the miner pooped out at 90G pulled into ram
Rotonen
2018-11-02 00:11:17
i'm a bit puzzled as to how it thinks it cannot when the heap size is set higher
Rotonen
2018-11-02 00:13:46
oh well i'll let it fscache, although that'll take ridiculously long to have everything cached up
Rotonen
2018-11-02 00:17:56
Jvm is weird
Fireduck
2018-11-02 00:19:24
ah well, it's more fun watching the iowait percentage drop down as fscache gets more and more populated
Rotonen
2018-11-02 00:19:40
also a faster feedback cycle on theadcount tweaks, so sorta a win
Rotonen
2018-11-02 00:22:57
i guess the field needs to be like 5/6 in fscache for significant speedups from extra ram?
Rotonen
2018-11-02 00:29:36
I don't know, I'm just the janitor
Fireduck
2018-11-02 00:32:32
it's actually faster to grep the snowfield and start mining than to memfield it :stuck_out_tongue:
Rotonen
2018-11-02 18:02:05
[snowblossomcoin/snowblossom] Issue closed by fireduck64
GitHub
2018-11-02 18:02:05
*https://github.com/snowblossomcoin/snowblossom/compare/93bd0ace00ef...f22dfeb5f9b9*
https://github.com/snowblossomcoin/snowblossom/commit/f22dfeb5f9b997a2b6c7b232fc0737570f6003db - Adjust difficulty for miner down if share rate is low.
GitHub
2018-11-02 19:10:37
@Fireduck thank you, that does well enough
Rotonen
2018-11-02 19:40:20
> Ok, I'll hit this with my dumb hammer
fydel
2018-11-02 19:40:32
i love this duck. :rolling_on_the_floor_laughing:
fydel
2018-11-02 19:42:20
Never use a smart hammer when a dumb one will do
Fireduck
2018-11-02 20:11:42
*https://github.com/snowblossomcoin/snowblossom/compare/f22dfeb5f9b9...fa5133abaed2*
https://github.com/snowblossomcoin/snowblossom/commit/fa5133abaed22e0107533115832b544677c5ac11 - update release notes
GitHub
2018-11-02 20:14:02
hammer time?
Rotonen
2018-11-02 20:15:06
I'm thinking about adding some actual useful stats to Arktika
Fireduck
2018-11-02 20:15:40
but having a hard time reasoning about if I need to get clever to avoid synchronization across cores for metrics
Fireduck
2018-11-02 20:15:59
or if an AtomicLong is going to be fast enough
Fireduck
2018-11-02 20:16:09
you need to get clever
Rotonen
2018-11-02 20:16:21
yeah, that is what I figure
Fireduck
2018-11-02 20:16:28
which is fine, I don't mind doing it
Fireduck
2018-11-02 20:19:18
*https://github.com/snowblossomcoin/snowblossom/compare/fa5133abaed2...39bbaac1749b*
https://github.com/snowblossomcoin/snowblossom/commit/39bbaac1749ba37cdb3c7fbcd55b28d0a9684b2c - Allow arktika to disable listening
GitHub
2018-11-02 20:50:59
@Rotonen you are right, 60M writes per second to AtomicLong, 650M writes per second if each thread gets its own AtomicLong
Fireduck
2018-11-02 21:00:50
*https://github.com/fireduck64/duckutil/compare/6802b2fa5745...59f3c57f6cfa*
https://github.com/fireduck64/duckutil/commit/59f3c57f6cfa5db61ef603d39d60cb95e77d2bbb - Add MultiAtomicLong
GitHub
2018-11-02 21:00:56
and there it is
Fireduck
2018-11-02 21:07:16
*https://github.com/snowblossomcoin/snowblossom/compare/39bbaac1749b...562d5d89a2a8*
https://github.com/snowblossomcoin/snowblossom/commit/562d5d89a2a80a42311bd514ead488b7bc5c96f8 - Switch miners to faster MultiAtomicLong
GitHub
2018-11-02 22:00:23
@Fireduck thank you for metrifying
Rotonen
2018-11-02 22:03:11
It might take me a bit. Turns out arktika was written by a crazy person.
Fireduck
2018-11-02 22:29:33
@Fireduck https://www.monkeyuser.com/2018/reminiscing/ Software development satire
Rotonen
2018-11-02 22:30:27
It isn't that bad, but it is necessarily complex due to the layers
Fireduck
2018-11-02 22:31:32
yeah, to be fair, the only bits i've actually so far looked at are to do with the config parsers
Rotonen