ZeroTestNet [20/12/23 Testnet] [Offline]

CloserNet went very nicely, but we want to debug some of the zero payment nodes and data distribution questions it brought up.

As such we’ve got some extra logs on the go, as well as set up the client to choose nodes at random (from close nodes), rather than the cheapest. This should help confirm if we have in a client-side storage choice issue (or indeed price setting issue as our testing has shown) or something else is going on here.

We’ve ask node users to try and keep a good amount of logs too in case we need to try and debug a certain store effort, eg.

It will also be useful if RecordRejected (any other rejection reason except record rejected due to payment not to self) error were collected and reported if node users spot such activity :bowing_man: .


A note for testers:

Just to highlight for folk (as the question has cropped up in other threads), encryption of files is a client side endeavor, and right now there it s lower limit on what can be encrypted. So small file are not yet encrypted as things stand.

This also means that the DataMaps which are used to know where all the self-encrypted chunks of a file live are may not be encrypted. And these are currently stored on the network by default. (We’ll probably be moving these to be disk-only by default so the only things put to the network would be self-encrypted.)

And finally, registers are currently not encrypted at all. We’re looking at ways to improve UX and allow for encryption there too.


A wee ubuntu iso for verification:

safe --peer /ip4/178.62.3.215/tcp/45315/p2p/12D3KooWHRWEb5XQZU1cksTGxsvzJi22zUTjfhemRNiMHLL88868 files download ubuntu-18.04.6-desktop-amd64.iso f2fe721b1f3f7538de3d6003107a6db799e2f07ac0a0981aa8eae8ae3922cd8e

Network Details

Node version: 0.100.22
Client version: 0.86.76
Faucet url: 138.68.138.2:8000

We have 101 droplets running a total of 2001 nodes. One droplet has 2vcpu and 4GB of memory.


If you are a regular user, see the ‘quickstart’ section for getting up and running.

If you are a first-time user, or would like more information, see the ‘further information’ section.


Quickstart

If you already have safeup, you can obtain the client and node binaries:

safeup client --version 0.86.76 
safeup node --version 0.100.22

Run a Node

Linux/macOS:

safenode

Windows:

safenode

Check local node’s reward balance

Your local node’s peer id will be printed to the terminal on startup with an example command). (You can also retrieve this from the node directory.)

safe wallet balance --peer-id="<local-node-peer-id>"

Connect to the Network as a Client

Linux/macOS:

safe wallet get-faucet 138.68.138.2:8000
safe files upload <directory-path>

Windows:

safe wallet get-faucet 138.68.138.2:8000
safe files upload <directory-path>

To do this with non-default batch-sizes (along with SAFE_PEERS set as above):

safe files upload --batch-size 40 <directory-path> 

40 being the integer value you want to set


Further Information

You can participate in the testnet either by connecting as a client or running your own node.

Connecting as a client requires the safe client binary; running a node requires the safenode binary.

Obtaining Binaries

We have a tool named safeup which is intended to make it easy to obtain the client, node, and other utility binaries.

Installing Safeup

On Linux/macOS, run the following command in your terminal:

curl -sSL https://raw.githubusercontent.com/maidsafe/safeup/main/install.sh | bash

On Windows, run the following command in a Powershell session (be careful to use Powershell, not cmd.exe):

iex (Invoke-RestMethod -Uri "https://raw.githubusercontent.com/maidsafe/safeup/main/install.ps1")

On either platform, you may need to restart your shell session for safeup to become available.

Installing Binaries

After obtaining safeup, you can install binaries like so:

safeup client # get the latest version of the client
safeup client --version 0.86.76  # get a specific version

safeup node # get the latest version of the node
safeup node --version 0.100.22 # get a specific version

safeup update # update all installed components to latest versions

When participating in our testnets, it is recommended to use a specific version. In our project we release a new version of the binaries every time we merge new code. This happens frequently, so over the lifetime of a testnet, many new releases will probably occur. So for participating in this particular testnet, you may not want the latest version.

The binaries are installed to ~/.local/bin on Linux and macOS, and on Windows they go to C:\Users\<username>\safe. Windows doesn’t really have a standard location for binaries that doesn’t require elevated privileges.

The safeup tool will modify the PATH variable on Linux/macOS, or the user Path variable on Windows. The effect of this is that the installed binaries will then become available in your shell without having to refer to them with their full paths. However, if you’re installing for the first time, you may need to start a new shell session for this change to be picked up.

Running a Node

You can participate in the testnet by running your own node. At the moment, you may not be successful if you’re running the node from your home machine. This is a situation we are working on. If you run from a cloud provider like Digital Ocean or AWS, you should be able to participate.

You can run the node process like so:

# Linux/macOS
safenode

# Windows
safenode

This will output all the logs to the filesystem, with the location of logs being platform specific:

# Linux
~/.local/share/safe/node/<peer id>/logs

# macOS
/Users/<username>/Library/Application Support/safe/node/<peer id>/logs

# Windows
C:\Users\<username>\AppData\Roaming\safe\node\<peer-id>\logs

If you wish, you can also provide your own path:

# Linux/macOS
SN_LOG=all safenode --log-output-dest <path>

# Windows
$env:SN_LOG = "all"; safenode --log-output-dest <path>

The advantage of using the predefined data-dir location is you can run multiple nodes on one machine without having to specify your own unique path for each node and manage that overhead yourself.

Connecting as a Client

You can use the safe client binary to connect as a client and upload or download files to/from the network.

Using the Client

You’ll first need to get some Safe Network Tokens:

safe wallet get-faucet 138.68.138.2:8000

You can now proceed to use the client, by, e.g., uploading files:

safe files upload <directory-path>

To download that same content:

safe files download

This will download the files to the default location, which is platform specific:

# Linux
~/.local/share/safe/client/downloaded_files

# macOS
/Users/<username>/Library/Application Support/safe/client/downloaded_files

# Windows
C:\Users\<username>\AppData\Roaming\safe\client\downloaded_files

To download to a particular file or directory:

safe file download [directory/filename] [NetworkAddress]

Troubleshooting

Cleanup

If you’ve used previous versions of the network before and you find problems when running commands, you may want to consider clearing out previous data (worthless DBCs from previous runs, old logs, old keys, etc.).

# Linux
rm -rf ~/.local/share/safe

# macOS
rm -rf ~/Library/Application\ Support/safe

# Windows
rmdir /s C:\Users\<username>\AppData\Roaming\safe

If you encounter a problem running any of our binaries on Windows, it’s possible you need the Visual C++ Redistributable installed.

31 Likes

@chriso FYI safeup installed both first time for the first time in months! :partying_face: :+1:

For vdash users:

There’s another minor update so cargo install vdash to get wallet balance shown in each node display as well as earnings (not the summary), which should match unless you transfer from the wallet. I haven’t actually tested that though!

EDIT: I see that for my nodes the wallet is consistently less than the total earnings, both of which are derived from the logs. The wallet value is read as-is, while the earnings are totalled with each earning event. I’m not sure why there’s a discrepancy. cc @joshuef. Actually, I wonder if the wallet value in the log lags the earning events I’ve totalled. That might be it.

Also, don’t forget to use SN_LOG=all when starting a node if you want to use vdash

I’m starting with ten nodes again but keeping all logs which means they will fill up the disk eventually.

20 mins:

36 mins:

All nodes earning, just prior to this only two were 0 earnings.

12 Likes

Called it :grin:, basically christmas eve and new tests popping!

14 Likes

What’s a suitable number for logging on nodes ?
how many log files and how many compressed files ?

5 Likes

Is this useful or not?

[2023-12-20T17:53:26.519769Z INFO sn_node::log_markers] RecordRejected(4abc5b(3fb0e254a1e213ede891791a9bcf9bdab84d6a52ce63cdccc195ab5922f0ae72), NoPaymentToOurNode(4abc5b(3fb0e254a1e213ede891791a9bcf9bdab84d6a52ce63cdccc195ab5922f0ae72)))

8 Likes

I ran the faucet three times on my laptop and the first two it was really fast, the third hung for a while and then failed:

safe wallet get-faucet 138.68.138.2:8000
Logging to directory: "/home/mrh/.local/share/safe/client/logs/log_2023-12-20_18-23-53"
Built with git version: 61a47b3 / main / 61a47b3
Instantiating a SAFE client...
Trying to fetch the bootstrap peers from https://sn-testnet.s3.eu-west-2.amazonaws.com/network-contacts
Connecting to the network with 98 peers:
🔗 Connected to the Network                                                                                        Requesting token for wallet address: aa279e15f7fa73eccf95e74649b18ac0d7e5ebe809f95a769b7cc23d0a15b44323ef9c4a08cfe616455883864ec356d9
Successfully parsed transfer. 
Verifying transfer with the Network...
cd src
Failed to verify and redeem transfer: CouldNotReceiveMoney("InvalidTransfer(\"GetRecord Query Error NotEnoughCopies { record_key: 0e9608(e7e11e47d6a3670ceed2fcdb353c12fd0bc69b6543a8e6a74b45d3e6e97def05), expected: 5, got: 1 }\")")
Error: 
   0: Failed to receive transfer due to InvalidTransfer("GetRecord Query Error NotEnoughCopies { record_key: 0e9608(e7e11e47d6a3670ceed2fcdb353c12fd0bc69b6543a8e6a74b45d3e6e97def05), expected: 5, got: 1 }")

Location:
   /rustc/a28077b28a02b92985b3a3faecf92813155f1ea1/library/core/src/convert/mod.rs:716

And subsequently an upload failed which looks related:

time safe files upload couchapp
Logging to directory: "/home/mrh/.local/share/safe/client/logs/log_2023-12-20_18-29-19"
Built with git version: 61a47b3 / main / 61a47b3
Instantiating a SAFE client...
Trying to fetch the bootstrap peers from https://sn-testnet.s3.eu-west-2.amazonaws.com/network-contacts
Connecting to the network with 98 peers:
🔗 Connected to the Network                                                                                        Starting to chunk "couchapp" now.
Uploading 95 chunks
Error: 
   0: Failed to upload chunk batch: Transfer Error Failed to send tokens due to The storage payment transfer was not successfully registered in the network: CouldNotSendMoney("Network Error GetRecord Query Error RecordNotFound.").

Location:
   sn_cli/src/subcommands/files/mod.rs:306

I’ll clear the client dir and try both again. Things are now working ok, two small uploads succeeded so trying one that never worked in the last testnet…

This fails after 14mins:

time safe files upload crdt
Logging to directory: "/home/mrh/.local/share/safe/client/logs/log_2023-12-20_19-31-31"
Built with git version: 61a47b3 / main / 61a47b3
Instantiating a SAFE client...
Trying to fetch the bootstrap peers from https://sn-testnet.s3.eu-west-2.amazonaws.com/network-contacts
Connecting to the network with 98 peers:
🔗 Connected to the Network                                                                                        Starting to chunk "crdt" now.
Chunking 154 files...
Uploading 469 chunks
Error: 
   0: Failed to upload chunk batch: Transfer Error Failed to send tokens due to The storage payment transfer was not successfully registered in the network: CouldNotSendMoney("Network Error GetRecord Query Error RecordNotFound.").

Location:
   sn_cli/src/subcommands/files/mod.rs:306

Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.

real	14m58.553s

And the next attempt failed with same error after 17 mins. So I can do small uploads but not one as large as the above.

Note: while the upload was running (but making no progress) other activity on my network was slow/impossible as with the last testnet.

8 Likes

I’m running three nodes, getting RecordRejected messages from all of them.

One node (12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9) has zero earnings.

Not sure if this is useful, or are these record rejected due to payment not to self errors?

Summary

root@localhost:~# grep -e RecordRejected .local/share/safe/node//logs/
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:04:14.369632Z INFO sn_node::log_markers] RecordRejected(e7e821(0223732664e9a829d794c3886798ad8a6463e6bbe020a5434661d3d224c7107f), NoPaymentToOurNode(e7e821(0223732664e9a829d794c3886798ad8a6463e6bbe020a5434661d3d224c7107f)))
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:07:50.773190Z INFO sn_node::log_markers] RecordRejected(788a58(022ba3256dfa4d5646ba23f7e38667321fb929c4af373a904599e62c8c654058), NoPaymentToOurNode(788a58(022ba3256dfa4d5646ba23f7e38667321fb929c4af373a904599e62c8c654058)))
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:08:09.088734Z INFO sn_node::log_markers] RecordRejected(788a58(022ba3256dfa4d5646ba23f7e38667321fb929c4af373a904599e62c8c654058), NoPaymentToOurNode(788a58(022ba3256dfa4d5646ba23f7e38667321fb929c4af373a904599e62c8c654058)))
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:09:59.217427Z INFO sn_node::log_markers] RecordRejected(e7c0d0(021cde94fda72c286645e98027ed3c7189c364bf26175dddebe02856a2f46369), NoPaymentToOurNode(e7c0d0(021cde94fda72c286645e98027ed3c7189c364bf26175dddebe02856a2f46369)))
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:17:08.409792Z INFO sn_node::log_markers] RecordRejected(a1b03f(022c07bbbbfc84e58befe538557f3162c899af982091492e9fa55b2374268df7), NoPaymentToOurNode(a1b03f(022c07bbbbfc84e58befe538557f3162c899af982091492e9fa55b2374268df7)))
.local/share/safe/node/12D3KooWB65epj99J9Dsn8x2s1LrZLpd8uVLQBLQzaECuXaSFv2h/logs/safenode.log:[2023-12-20T18:21:13.769900Z INFO sn_node::log_markers] RecordRejected(773070(03110349249df7c6d58624af79c40fb9b0737c98e70225710bc4a57cec3c1f28), NoPaymentToOurNode(773070(03110349249df7c6d58624af79c40fb9b0737c98e70225710bc4a57cec3c1f28)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T17:53:50.271939Z INFO sn_node::log_markers] RecordRejected(a4ab05(c616afbb268c58f53e35e78c4a1b5629c438e38006dea6219c849e74cddf7031), NoPaymentToOurNode(a4ab05(c616afbb268c58f53e35e78c4a1b5629c438e38006dea6219c849e74cddf7031)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:06:04.911567Z INFO sn_node::log_markers] RecordRejected(44ee36(c66aafe791f7d7fef35f0902afbd35eaad687cdf05d1da55595b154dd162c8d3), NoPaymentToOurNode(44ee36(c66aafe791f7d7fef35f0902afbd35eaad687cdf05d1da55595b154dd162c8d3)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:07:35.948744Z INFO sn_node::log_markers] RecordRejected(64f457(c6130c7aa96801420037f59804fa295a692323b4a8d291d8ca5e04395f4844f9), NoPaymentToOurNode(64f457(c6130c7aa96801420037f59804fa295a692323b4a8d291d8ca5e04395f4844f9)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:09:51.987368Z INFO sn_node::log_markers] RecordRejected(15164a(c62b8f12af83fd1a99f9441f60a0870de18d4d76afd59b6c7fa6c9e77e5cd243), NoPaymentToOurNode(15164a(c62b8f12af83fd1a99f9441f60a0870de18d4d76afd59b6c7fa6c9e77e5cd243)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:11:19.767789Z INFO sn_node::log_markers] RecordRejected(da7e9f(c63adf508ef0755e78c620ab46d527a96c772c8db49c528eb4fb8e950b316935), NoPaymentToOurNode(da7e9f(c63adf508ef0755e78c620ab46d527a96c772c8db49c528eb4fb8e950b316935)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:13:12.156952Z INFO sn_node::log_markers] RecordRejected(288a11(c65be34b6dfb6c8efe232f9f32a6c1bbd8f43802ff04125c8d5a855a839af6be), NoPaymentToOurNode(288a11(c65be34b6dfb6c8efe232f9f32a6c1bbd8f43802ff04125c8d5a855a839af6be)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:16:20.229715Z INFO sn_node::log_markers] RecordRejected(0e5d8b(c6468003d0281c11cbad9d48cef577102eac000ebd41aaadb68e834669769805), NoPaymentToOurNode(0e5d8b(c6468003d0281c11cbad9d48cef577102eac000ebd41aaadb68e834669769805)))
.local/share/safe/node/12D3KooWGtJXJuGr4ia3xTmtQWUfLoEVuLoDRK3UcaKQb8JSyRV9/logs/safenode.log:[2023-12-20T18:20:07.673800Z INFO sn_node::log_markers] RecordRejected(ec49bc(c67b65ac7bd384f163ac900cff0fb85f6402bb5ceca232d2e511b5f4f08eb7c9), NoPaymentToOurNode(ec49bc(c67b65ac7bd384f163ac900cff0fb85f6402bb5ceca232d2e511b5f4f08eb7c9)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log:[2023-12-20T18:24:03.897463Z INFO sn_node::log_markers] RecordRejected(066cf4(c5aecf9c6de85ac5c0ea04fe0ae3f571685ad1fb755f2874b7ea5a52d2b9abd2), NoPaymentToOurNode(066cf4(c5aecf9c6de85ac5c0ea04fe0ae3f571685ad1fb755f2874b7ea5a52d2b9abd2)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T17:56:26.703424Z INFO sn_node::log_markers] RecordRejected(a50891(c59a86e6012db610b3dfdacba30ca3826bc85cbd1e1c0815a04f69316ce3d47c), NoPaymentToOurNode(a50891(c59a86e6012db610b3dfdacba30ca3826bc85cbd1e1c0815a04f69316ce3d47c)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T17:57:44.640927Z INFO sn_node::log_markers] RecordRejected(62e549(c5b2c0695010cd09bf5c0f4e98806987a22af074288927a82276e2a65946e133), NoPaymentToOurNode(62e549(c5b2c0695010cd09bf5c0f4e98806987a22af074288927a82276e2a65946e133)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T17:58:13.850703Z INFO sn_node::log_markers] RecordRejected(469740(c5941e63ab14f4ac4880ef3512adec0c32efa84b6fdc18c11c9409dc047028a0), NoPaymentToOurNode(469740(c5941e63ab14f4ac4880ef3512adec0c32efa84b6fdc18c11c9409dc047028a0)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:02:00.553945Z INFO sn_node::log_markers] RecordRejected(d114b7(c57679ac484e2d37609094306abc43b41c88ba707cfdcf126670a261fdf35289), NoPaymentToOurNode(d114b7(c57679ac484e2d37609094306abc43b41c88ba707cfdcf126670a261fdf35289)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:02:50.814728Z INFO sn_node::log_markers] RecordRejected(a32148(c5788f9b5112c80c46444db61c3d2fe7351a3aa9a6983aa7c34bb0f3095bf94b), NoPaymentToOurNode(a32148(c5788f9b5112c80c46444db61c3d2fe7351a3aa9a6983aa7c34bb0f3095bf94b)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:04:55.150950Z INFO sn_node::log_markers] RecordRejected(3259d5(c5abab9be4eef499dc077594676a3aa2df30b6de23a000c4845e2b65a1e78e0f), NoPaymentToOurNode(3259d5(c5abab9be4eef499dc077594676a3aa2df30b6de23a000c4845e2b65a1e78e0f)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:07:11.513671Z INFO sn_node::log_markers] RecordRejected(e4efbf(c5a5e4c5cc8a4b8444e2d07b6df59c95d11fb07bad48ed349c795ce37e79448f), NoPaymentToOurNode(e4efbf(c5a5e4c5cc8a4b8444e2d07b6df59c95d11fb07bad48ed349c795ce37e79448f)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:09:53.758942Z INFO sn_node::log_markers] RecordRejected(1d2105(c54a85634ea8194ffb896f96e07152a2ab15aacc3ddaa5214ef3f115f7903b7c), NoPaymentToOurNode(1d2105(c54a85634ea8194ffb896f96e07152a2ab15aacc3ddaa5214ef3f115f7903b7c)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:12:20.792918Z INFO sn_node::log_markers] RecordRejected(c2b2dd(c5758bc5227d737dd5213771d36955e20ffa8fb72d01615a4d5dfd7e50931f6a), NoPaymentToOurNode(c2b2dd(c5758bc5227d737dd5213771d36955e20ffa8fb72d01615a4d5dfd7e50931f6a)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:12:23.246673Z INFO sn_node::log_markers] RecordRejected(b9d189(c5b74368336e4c970785feb7ad130afdce24aaa1793b11470a1731d30d34fd24), NoPaymentToOurNode(b9d189(c5b74368336e4c970785feb7ad130afdce24aaa1793b11470a1731d30d34fd24)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:15:22.281943Z INFO sn_node::log_markers] RecordRejected(7a41b8(c5edc1f35e9fed927c111f034f64894009e4b682ac069b4ceb2f7dd8b79622f9), NoPaymentToOurNode(7a41b8(c5edc1f35e9fed927c111f034f64894009e4b682ac069b4ceb2f7dd8b79622f9)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:16:21.060409Z INFO sn_node::log_markers] RecordRejected(4253d9(c59e31ba6db8259341d371145ce49446708b162850ecf8dcddf037ddf58ccb06), NoPaymentToOurNode(4253d9(c59e31ba6db8259341d371145ce49446708b162850ecf8dcddf037ddf58ccb06)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:17:00.572724Z INFO sn_node::log_markers] RecordRejected(32646b(c590c25d9ba7a5d9ff4fba77f6e860705321b287a2ca6b219ff282ed46ad00bf), NoPaymentToOurNode(32646b(c590c25d9ba7a5d9ff4fba77f6e860705321b287a2ca6b219ff282ed46ad00bf)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:18:03.399241Z INFO sn_node::log_markers] RecordRejected(3dd948(c5ed154d7a0df722fadd763061211069b547abaf16e39d97c2fe4ed13cad900e), NoPaymentToOurNode(3dd948(c5ed154d7a0df722fadd763061211069b547abaf16e39d97c2fe4ed13cad900e)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:18:57.249700Z INFO sn_node::log_markers] RecordRejected(1143fa(c5a1bdc0cd2389d3ddbedcb295f1eb8d4b45d0a068bffa042877a703a1cf3294), NoPaymentToOurNode(1143fa(c5a1bdc0cd2389d3ddbedcb295f1eb8d4b45d0a068bffa042877a703a1cf3294)))
.local/share/safe/node/12D3KooWLTZg21RZ49YLk6HA8jP4APFpnCU8ZnS2vUZ3BD7RkjKb/logs/safenode.log.20231220T182341:[2023-12-20T18:23:03.181698Z INFO sn_node::log_markers] RecordRejected(cb0561(c54c69d3b2aeadb2d1a361cd85124351da392e89db1b21a97efed5035d0c7891), NoPaymentToOurNode(cb0561(c54c69d3b2aeadb2d1a361cd85124351da392e89db1b21a97efed5035d0c7891)))

5 Likes

ideally keeping logs covering 24 hours? so maybe 10 log files ?

7 Likes

yeah they are record rejected due to payment not to self errors.
not targeted so far.
Shall make it clearer: if it is NoPaymentToOurNode error, just ignore it so far.

7 Likes

So with flags on safe node keep 10 log files and no compressed log files would that be useful?

3 Likes

yeah, shall be. thank you.

5 Likes

Slightly more advanced version:
grep -h "RecordRejected" /d/SN/logs/* | cut -d, -f2-

 NoPaymentToOurNode(f38022(3fb6364493a89009912518630d2d74c0e546fd7756f2e0d0a064d24f256f6044)))
 NoPaymentToOurNode(4abc5b(3fb0e254a1e213ede891791a9bcf9bdab84d6a52ce63cdccc195ab5922f0ae72)))
 NoPaymentToOurNode(36f86f(3f7784c1fec93931f827f191f3c94c83040a93838a1046a5005a84b3b9f74e87)))
...
7 Likes

Interesting. This first-time upload of a 1 GB random testfile found 572 already existing chunks, which seems unlikely.

Also payment was taken before loading all the chunks had been uploaded. I noticed the file address was missing from the output and retried the upload. Two more chunks were uploaded.

root@localhost:~/testfiles# safe files upload 1g
Logging to directory: "/root/.local/share/safe/client/logs/log_2023-12-20_18-04-21"
Using SN_LOG=all
Built with git version: 61a47b3 / main / 61a47b3
Instantiating a SAFE client...
Trying to fetch the bootstrap peers from https://sn-testnet.s3.eu-west-2.amazonaws.com/network-contacts
Connecting to the network with 98 peers:
🔗 Connected to the Network                                                                                                                                                                                                                                                    Starting to chunk "1g" now.
Chunking 1 files...
Uploading 2049 chunks
⠖ [00:33:32] [####################>-------------------] 1049/2049                                                                                                                                                                                                              Retrying failed chunks 1000, attempt 0/3...
⠠ [00:45:21] [#####################################>--] 1945/2049                                                                                                                                                                                                              Retrying failed chunks 103, attempt 1/3...
⠒ [00:47:28] [#######################################>] 2023/2049                                                                                                                                                                                                              Retrying failed chunks 26, attempt 2/3...
**************************************
*          Uploaded Files            *
**************************************

Among 2049 chunks, found 572 already existed in network, uploaded the leftover 1477 chunks in 48 minutes 1 seconds
**************************************
*          Payment Details           *
**************************************
Made payment of 0.000061516 for 1477 chunks
Made payment of 0.000009611 for royalties fees
New wallet balance: 199.999901927

Retry:

Starting to chunk "1g" now.
Uploading 2 chunks
**************************************
*          Uploaded Files            *
**************************************
"1g" ee88d41b4e7b9135bcd09193858ef1d29d2c5e4218766ef07a2264634f4c0c57
Among 2 chunks, found 0 already existed in network, uploaded the leftover 2 chunks in 11 seconds
**************************************
*          Payment Details           *
**************************************
Made payment of 0.000000036 for 2 chunks
Made payment of 0.000000005 for royalties fees
New wallet balance: 199.999901886
5 Likes

I saw the same, except my file was not random.
I though someone was uploading it at the same time I did.
But probably such output happens just because of bug.

3 Likes

Just downloaded the file and succeeded.

Client downloaded file in 23.507024665s
Saved 1g_by_JPL at /root/.local/share/safe/client/1g_by_JPL

1073741824 Dec 20 19:36 1g_by_JPL

if the file is fetchable and correct, then maybe it is OK ?
if the chunk is reported as already existed in network there will be no attempt to make payment for it, neither try to upload it.
Hence, there must be a copy in the network already so that you can fetch back.

3 Likes

It’s a file of random ones and zeros, so to have 572 chunks out of 2048 already existing on the network doesn’t seem statistically likely.

I’ll try some more, see if it happens again.

6 Likes

yeah, that’s bit weird.
will have a look

4 Likes

Broken randomness? I never tried random files, but this never happened to me with normal files.

3 Likes

yeah, agreed.
can you download it back and do a bit_wise compare with your original file to check if it is really the one you uploaded ?

2 Likes