--- Log opened Wed Jun 19 00:00:46 2019 00:25 -!- reallll [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 00:26 -!- belcher [~belcher@unaffiliated/belcher] has joined #c-lightning 00:46 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 01:17 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 01:18 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 248 seconds] 01:18 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 245 seconds] 01:24 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 01:56 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has quit [Ping timeout: 272 seconds] 02:16 -!- bitonic-cjp [~bitonic-c@92-111-70-106.static.v4.ziggozakelijk.nl] has joined #c-lightning 02:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #c-lightning 02:50 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 02:50 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 248 seconds] 02:51 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 245 seconds] 02:58 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 03:13 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 03:18 -!- michaelfolkson [~textual@2a00:23c5:be04:e501:ceb:6ebe:b1a2:30ca] has joined #c-lightning 03:30 -!- spinza [~spin@155.93.246.187] has joined #c-lightning 03:54 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 04:38 -!- michaelfolkson [~textual@2a00:23c5:be04:e501:ceb:6ebe:b1a2:30ca] has quit [Quit: Sleep mode] 04:39 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 04:48 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 04:50 -!- spinza [~spin@155.93.246.187] has joined #c-lightning 04:51 < rusty> m-schmoock: Thanks for bug report. BTW, just saw this, does it effect you? https://twitter.com/kernellogger/status/1140149670259372032?s=20 05:01 < m-schmoock> not encountered corruption yet. will check 05:01 < m-schmoock> rusty: I also noticed two problems with gossip and the routing engine 05:03 < m-schmoock> when actually using the daemon on mainnet over a longer period, it may happen that cln is not recognizing fee updates of its peers, leading to INSUFFICIENT_FEE errors. Restart helps, but thats not nice. Secondly the routing engine seem to encounter "Could not find route" where it should find a route 05:03 < m-schmoock> both problems are not really predictable which is why I have not brought it up yet 05:04 < m-schmoock> on the second one im not sure, maybe the routing engine has good reason to not find particular routes 05:05 < m-schmoock> But the first one is straight forward... keep the daemon running some time. LN-BIG is doing fee updates occasionally. try to rebalance the channel, it can fail because of wrong fees 05:06 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 05:06 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 244 seconds] 05:06 < m-schmoock> which is strange, as rebalance takes current feerate from gossip and is not storing this information in the plugin 05:06 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 248 seconds] 05:10 < m-schmoock> I updated my server and will reboot it now... any known kernel bugs fixes should be applied then 05:10 -!- m-schmoock [~will@schmoock.net] has quit [Remote host closed the connection] 05:14 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 05:14 -!- m-schmoock [~will@schmoock.net] has joined #c-lightning 05:14 < m-schmoock> re 05:19 < m-schmoock> rusty: now I may have trouble... my daemon crashed with "lightningd(3013): wallet_htlc_update: database is locke" 05:19 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 258 seconds] 05:30 < m-schmoock> cdecker: when cln crashes with "wallet_htlc_update: database is locked", is this critical? what is the recommended action? Closing the affected channel? Doing another payment (if possible after restart)? Why is the SQLite database locked in the first place?? in the end its a file 05:32 < m-schmoock> after restart I used the affected channel successfully, does that mean I am fine from now on? 05:57 -!- takinbo [sid19838@gateway/web/irccloud.com/x-khjxhymesieoomuc] has joined #c-lightning 06:02 <@cdecker> m-schmoock: that means that another process has locked the database. That is not allowed by sqlite3 hence the crash 06:02 <@cdecker> Do you have something that accesses the DB outside of cln? 06:02 < m-schmoock> nope 06:03 < m-schmoock> cdecker: should I worry about this incident? 06:05 <@cdecker> Hm, if you don't know what the second process is then that's troubling 06:05 <@cdecker> Maybe `lsof` has more details? 06:05 < m-schmoock> The daemon runs normal now 06:06 <@cdecker> It happened a few times to me that a plugin reached around directly into the DB and that'd cause lock-contention with cln itself 06:07 <@cdecker> Best to keep an eye on it and see if it happens again 06:07 < m-schmoock> okay, so is there no problems with my channel funds being in danger because my db has an invalid state? 06:09 <@cdecker> No, we always commit to the DB first before any dangerous transition, so your DB will reflect the latest state 06:10 < m-schmoock> ok, thx 06:10 <@cdecker> This was done to allow arbitrary crashes at any point during the execution, DB lock contention just being one of the possible cases. 06:13 < m-schmoock> good to know :D 06:28 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 06:29 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 272 seconds] 06:59 -!- spaced0ut [~spaced0ut@unaffiliated/spaced0ut] has joined #c-lightning 07:37 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 248 seconds] 07:37 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 245 seconds] 07:37 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 07:43 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 08:44 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 08:44 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 245 seconds] 08:45 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 245 seconds] 08:53 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 09:13 -!- bitonic-cjp [~bitonic-c@92-111-70-106.static.v4.ziggozakelijk.nl] has quit [Quit: Leaving] 10:13 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 10:13 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 244 seconds] 10:13 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 272 seconds] 10:19 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 10:33 -!- michaelfolkson [~textual@193.117.169.106] has joined #c-lightning 10:45 -!- michaelfolkson [~textual@193.117.169.106] has quit [Quit: Sleep mode] 11:21 -!- fjahr [uid374480@gateway/web/irccloud.com/x-wbzyczhsyyayfsfl] has joined #c-lightning 11:39 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 244 seconds] 11:39 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 11:40 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 268 seconds] 11:45 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 12:25 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 12:29 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 246 seconds] 12:29 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 12:30 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 268 seconds] 12:35 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 12:48 < grubles> anyone know if shesek has plans for spark on iOS? 12:49 < grubles> i remember chatting with him about it. i think he doesnt have an iOS / mac to test on? 13:01 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 13:01 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 245 seconds] 13:02 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 272 seconds] 13:15 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 13:17 -!- spinza [~spin@155.93.246.187] has joined #c-lightning 14:01 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 248 seconds] 14:01 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 244 seconds] 14:02 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 14:08 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 14:51 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 272 seconds] 15:01 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 15:02 -!- booyah [~bb@193.25.1.157] has joined #c-lightning 15:03 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has joined #c-lightning 15:03 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 258 seconds] 15:04 -!- queip [~queip@unaffiliated/rezurus] has quit [Ping timeout: 268 seconds] 15:05 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 15:09 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has joined #c-lightning 15:10 -!- queip [~queip@unaffiliated/rezurus] has joined #c-lightning 15:11 -!- spinza [~spin@155.93.246.187] has joined #c-lightning 15:24 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 15:29 < rusty> m-schmoock: you have all the fun, it seems! I'm going to deliberately connect my node to all those peers you have, to check if it's something about your gossip pattern. The other mitigations are to abandon the store at startup if it's corrupt, and to only compact at startup. I think I'll push those today, at least for the next release. Then I'll produce a special branch for you with extra logging... 16:01 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 16:03 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has quit [Quit: Leaving] 16:03 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #c-lightning 16:42 -!- reallll [~belcher@unaffiliated/belcher] has joined #c-lightning 16:44 -!- berndj [~berndj@azna.co.za] has quit [Ping timeout: 245 seconds] 16:45 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 258 seconds] 16:45 -!- berndj [~berndj@197.242.93.82] has joined #c-lightning 16:58 -!- Amperture [~amp@24.136.5.183] has quit [Remote host closed the connection] 17:28 -!- Kostenko [~Kostenko@185.183.106.22] has joined #c-lightning 17:32 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 264 seconds] 17:40 -!- Kostenko [~Kostenko@185.183.106.22] has quit [Read error: Connection reset by peer] 17:49 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has quit [Ping timeout: 248 seconds] 17:52 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 17:55 < rusty> m-schmoock: https://github.com/ElementsProject/lightning/pull/2758 18:02 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 18:29 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 18:35 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has joined #c-lightning 18:36 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #c-lightning 18:55 -!- booyah [~bb@193.25.1.157] has quit [Ping timeout: 258 seconds] 18:56 -!- booyah [~bb@193.25.1.157] has joined #c-lightning 18:57 -!- harding [~harding@c-73-112-147-20.hsd1.nj.comcast.net] has quit [Ping timeout: 272 seconds] 19:04 -!- harding [~harding@c-73-112-147-20.hsd1.nj.comcast.net] has joined #c-lightning 19:12 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has quit [Quit: WeeChat 2.4] 19:42 -!- justanotheruser [justanothe@gateway/vpn/nordvpn/justanotheruser] has joined #c-lightning 20:27 < rusty> m-schmoock: merged, please update to lastest master. 21:04 < jb55> rusty: my node has been stable fwiw 21:04 < rusty> jb55: mine too... I'm tempted to name this the Schmoock effect, which tests all the error paths! 21:04 < rusty> s/effect/curse/ depending on how I'm feeling actually :) 21:15 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-myppjszzigdpzwdf] has left #c-lightning [] 21:15 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-myppjszzigdpzwdf] has joined #c-lightning 21:55 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-myppjszzigdpzwdf] has left #c-lightning [] 21:58 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-myppjszzigdpzwdf] has joined #c-lightning 22:31 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has quit [Remote host closed the connection] 22:31 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #c-lightning 23:11 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 256 seconds] 23:13 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #c-lightning 23:14 -!- keymone [~keymone@ip1f10c1a7.dynamic.kabel-deutschland.de] has quit [Ping timeout: 272 seconds] 23:18 -!- keymone [~keymone@ip1f10c1a7.dynamic.kabel-deutschland.de] has joined #c-lightning 23:26 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 23:34 -!- spinza [~spin@155.93.246.187] has joined #c-lightning 23:47 -!- harding [~harding@c-73-112-147-20.hsd1.nj.comcast.net] has quit [Ping timeout: 245 seconds] --- Log closed Thu Jun 20 00:00:47 2019