Today my node stopped receiving/uploading data and i can only see some strange errors, that i could not find on this page. Should i worry about it ?
“2020-01-08T19:07:14.321Z ERROR orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 rpc client error when receiveing new order settlements {“error”: “order: failed to receive settlement response: only specified storage node can settle order”, “errorVerbose”: “order: failed to receive settlement response: only specified storage node can settle order\n\tstorj.io/storj/storagenode/orders.(*Service).settle:304\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:195\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrders.func2:174\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-01-08T19:07:14.598Z ERROR orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 rpc client when sending new orders settlements {“error”: “order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “order: sending settlement agreements returned an error: EOF\n\tstorj.io/storj/storagenode/orders.(*Service).settle.func2:276\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“FGJ2OZWXJVAU3PIKJJDGXM6FHA”,“satellite_id”:“121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6”,“uplink_public_key”:{},“storage_node_id”:“1TLrkfdpxkGs1XQTsCQpQs1fS1SHH2H5kkYtnEDYoCffYcarbv”,“piece_id”:“ZCBK5JR6VYIQIGY2LJAWXVIGLHRMZ2YNK4JJRRLX2CTG7S7HZQ5A”,“limit”:2317056,“action”:1,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-01-13T19:21:17.525396808Z”,“order_creation”:“2020-01-06T19:21:17.526994442Z”,“satellite_signature”:“MEYCIQD3dLZObFSxG29SkCJT8KRCNDr2AplO1h/BmXMWA8WXgwIhAPUanOfDK3dt70TxhYz2M0gnnIPTzY0OFSAllfg8ZUAU”,“satellite_address”:{}},“order”:{“serial_number”:“FGJ2OZWXJVAU3PIKJJDGXM6FHA”,“amount”:2028288,“uplink_signature”:“HQwDBIpBXmJs2ecT0Fb98r5IBpCyJSzjxixcI9KY+8xkHpAqUumcIwK2kBFbElQLbrWotaSkar4XeTfoFZg6AA==”}}}
2020-01-08T19:07:14.599Z INFO orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 finished
2020-01-08T19:07:14.599Z ERROR orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 failed to settle orders {“error”: “order: failed to receive settlement response: only specified storage node can settle order; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: only specified storage node can settle order\n\tstorj.io/storj/storagenode/orders.(*Service).settle:304\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:195\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrders.func2:174\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57\n— order: sending settlement agreements returned an error: EOF\n\tstorj.io/storj/storagenode/orders.(*Service).settle.func2:276\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}”
@nerdatwork they 100% are in this folder. As it was working (see the image).
But i believe that i might messed up something while swaping nodes. Probably will start a new topic about it.
Hi. I’m a begginer and I tried to do my node run but I tried several times and my node still offline. Please help me. i want to make this biger than that and i want some tips.
you can contact me on whatsapp for faster communication. 0040773345041 Please contact me!!
I have this error, but I don’t see anything about it:
ERROR piecestore upload failed
“error”: “pieces error: filestore error: chmod config/storage/temp/blob-119950743.partial: no such file or directory”
It seems to be there is a miss file, but all the rest work normally.
So this could mean many things, but a deleted file isn’t one of them. It almost looks like it failed to create the file and then tried to modify the file it thought it created or something similar. That being said, unless you start seeing audits for that Piece ID, I wouldn’t worry about it.
How old is your node ? You can search your log when the piece was uploaded. Your hardware could have restarted a month back and this only showed up now when the piece was getting downloaded.
There are a bunch of things that happen asynchronously, hence there’s some eventual consistency behaviors that might not be obvious at first sight.
Let’s take an example scenario that demonstrates it:
At 11:15:00 Alice on computer A sends a request to download an object to the satellite, then satellite responds with the needed order limits for the specific storage nodes.
At 11:15:01 Bob on computer B sends a delete request for that object, which ends up sending a delete request to the storage node. Storage node deletes the piece.
At 11:15:03 Alice on computer A starts using the order limits (there was a latency spike on network, which caused it to take a bit longer)… however, now, none of the storage nodes have that data anymore.
This ends up in the logs as:
object deleted
download started
download failed
With object expiration, the timeframe when this can happen is larger, because the satellite takes more time to delete expired objects/segments than the storage node.