Пришло меньше, чем на dashboard (много неотправленных заказов)

50$ is not 63Storj :ярость:ярость:ярость:face_with_symbols_over_mouth: :face_with_symbols_over_mouth: :face_with_symbols_over_mouth: :face_with_symbols_over_mouth:

1 Like

do you have lot of unsended orders in your node order folder?

Вадим, как это можно посмотреть? sorry for russian

Zdravstvui.

v linuxe ne znaju.
v windowse esli, zaidi v program files>storj>storagenode>orders

Действительно в папке orders-> unsent много файлов (я так понимаю это невыполненные заказы). Как можно снизить число невыполненных заказов?

Вадим спасибо :wave:

mnogo eto skolko 10-20-100?

6780 невыполненных :face_with_raised_eyebrow: за октябрь

zna4it u tebja problema s otpravkoi orderov, oni vypolneny no ne ottpravlen ot4jot ob ih ispolnenii.

незнаешь как решить проблему? или лучше в поддержку написать?

podderzhka lu4she budet

Здравствуйте @Mikhail,
Добро пожаловать на форум!

Оставлю инструкцию тут на всякий случай:

  1. Остановите узел
  2. Удалите все заказы старше 48 часов из папки orders/unsent (они не будут приняты всё равно, потому что срок действия 48 часов)
  3. Переместите остальные в другую папку
  4. Возвращайте небольшими партиями
  5. Перезапустите узел
  6. Если заказы отправились - см. п. 4
  7. Если заказы “застряли” - переместите половину заказов в другую папку и перезапустите узел
  8. Если всё ещё не отправляются - п. 7, пока не найдёте сбойный заказ. Его необходимо удалить.
  9. Повторяйте с п.4 пока не отправите все заказы.

Неплохо было бы потом проверить БД orders.db либо с помощью локально установленной sqlite3, либо с помощью docker версии (см. https://support.storj.io/hc/en-us/articles/360029309111):

  1. Остановите узел
  2. Выполните:
sqlite3 /путь/к/базе/orders.db "select count(*) from unsent_order;"
  1. Если 0, то всё в порядке. Если не ноль:
sqlite3 /путь/к/базе/orders.db "delete from unsent_order;"
  1. Запустите узел

Mne vydajot oshibku
Execution finished with errors.

Result: no such table: main.certificate

At line 1:

delete from unsent_order

  1. Узел должен быть остановлен
  2. Убедитесь, что sqlite3 не старше чем v3.25.2

Возможно вам будет проще создать эту базу с нуля:

  1. Остановите узел
  2. Удалите orders.db
  3. Выполните:
sqlite3 /path/to/orders.db
  1. Когда увидите приглашение sqlite> выполните:
CREATE TABLE unsent_order (
                                                satellite_id  BLOB NOT NULL,
                                                serial_number BLOB NOT NULL,

                                                order_limit_serialized BLOB      NOT NULL, -- serialized pb.OrderLimit
                                                order_serialized       BLOB      NOT NULL, -- serialized pb.Order
                                                order_limit_expiration TIMESTAMP NOT NULL, -- when is the deadline for sending it

                                                uplink_cert_id INTEGER NOT NULL,

                                                FOREIGN KEY(uplink_cert_id) REFERENCES certificate(cert_id)
                                        );
CREATE TABLE order_archive_ (
                                                satellite_id  BLOB NOT NULL,
                                                serial_number BLOB NOT NULL,

                                                order_limit_serialized BLOB NOT NULL,
                                                order_serialized       BLOB NOT NULL,

                                                uplink_cert_id INTEGER NOT NULL,

                                                status      INTEGER   NOT NULL,
                                                archived_at TIMESTAMP NOT NULL,

                                                FOREIGN KEY(uplink_cert_id) REFERENCES certificate(cert_id)
                                        );
CREATE UNIQUE INDEX idx_orders ON unsent_order(satellite_id, serial_number);
CREATE TABLE versions (version int, commited_at text);
CREATE INDEX idx_order_archived_at ON order_archive_(archived_at);
insert into versions values(27, datetime('now', 'utc'));
.exit
  1. Запустите узел, проверьте, что заказы отправляются

Zdes vsjo ok na4alo rabotat, nashol esjo odin node gde vydajot
order.db pustaja udalil starye unsended orders iz papki ostavil tolko poslednije 2 dnja
no vydajot oshibku takuju
2020-11-03T23:29:31.636+0200 INFO orders.12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs sending {“count”: 192473}
2020-11-03T23:29:31.636+0200 INFO orders.12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S sending {“count”: 442576}
2020-11-03T23:29:31.636+0200 INFO orders.12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB sending {“count”: 1086586}
2020-11-03T23:29:31.636+0200 INFO orders.1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE sending {“count”: 214905}
2020-11-03T23:29:31.636+0200 INFO orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 sending {“count”: 372907}
2020-11-03T23:29:31.769+0200 ERROR orders.12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs rpc client error when receiving new order settlements {“error”: “order: failed to receive settlement response: endpoint disabled”, “errorVerbose”: “order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:31.795+0200 ERROR orders.12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB rpc client error when receiving new order settlements {“error”: “order: failed to receive settlement response: endpoint disabled”, “errorVerbose”: “order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:31.811+0200 ERROR orders.12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs 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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“AAAAAAC7EDCNGYV5A55K2GH76Y”,“satellite_id”:“12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs”,“uplink_public_key”:{},“storage_node_id”:“1KfnVA6YNoA1HJ1akQ8LWp9YD7sMcEfAvksdfEQm23MDrwwGra”,“piece_id”:“25CBDED3J6ZPUEAM6XRIU36JOS3E4TOSFJSID4RBZEHOVWZKAQKQ”,“limit”:2319360,“action”:1,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-07-29T00:37:39.927703163Z”,“order_creation”:“2020-07-27T00:37:39.927816774Z”,“satellite_signature”:“MEUCIHuX+kx1Oat4dwsTiKRzpaePFrVQCGeaIQKPXy4ozIKtAiEA7e3d7V/egx1Z5YrgdDmpUqULpporyY2yygQUuvFFHbc=”,“satellite_address”:{}},“order”:{“serial_number”:“AAAAAAC7EDCNGYV5A55K2GH76Y”,“amount”:920576,“uplink_signature”:“pshUqmWTd4UcZiiJULtKMiWmegXMJxlc3iG2aaed2+uqKtfIYlOigTm4oAnBdaPoT9NeVRWhwYH0TVUZfe7CAg==”}}}
2020-11-03T23:29:31.811+0200 INFO orders.12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs finished
2020-11-03T23:29:31.811+0200 ERROR orders.12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs failed to settle orders {“error”: “order: failed to receive settlement response: endpoint disabled; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:31.843+0200 ERROR orders.12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB 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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“AAAAAAC7EHHIBEC56YWZ3OTKCE”,“satellite_id”:“12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB”,“uplink_public_key”:{},“storage_node_id”:“1KfnVA6YNoA1HJ1akQ8LWp9YD7sMcEfAvksdfEQm23MDrwwGra”,“piece_id”:“MWAIFMESM5XELFI2CLLWFZ6GFHNUGXKY34DEF4DPK7K3KJ2S5J6A”,“limit”:2319360,“action”:2,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-07-29T19:31:12.281103889Z”,“order_creation”:“2020-07-27T19:31:12.283202017Z”,“satellite_signature”:“MEQCIF3mknbNYsrQU+hcNqCHqckf3UnDSX72VUa8dUiobTnGAiBlqd/TBSWiSWiJTLr2P49XuCec+b6QMjRXGpP2j2fAmw==”,“satellite_address”:{}},“order”:{“serial_number”:“AAAAAAC7EHHIBEC56YWZ3OTKCE”,“amount”:2319104,“uplink_signature”:“cRqkus8TYRJGHeFvFZn3bZdK582VjtSS9mXa8thmFKikExNOMEbuU7NBRfG1SDTUFPjexWtaX+Sq8PI/KWEsAQ==”}}}
2020-11-03T23:29:31.843+0200 INFO orders.12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB finished
2020-11-03T23:29:31.843+0200 ERROR orders.12rfG3sh9NCWiX3ivPjq2HtdLmbqCrvHVEzJubnzFzosMuawymB failed to settle orders {“error”: “order: failed to receive settlement response: endpoint disabled; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.067+0200 ERROR orders.12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S rpc client error when receiving new order settlements {“error”: “order: failed to receive settlement response: endpoint disabled”, “errorVerbose”: “order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.204+0200 ERROR orders.12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S 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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“AAAAAAC7EBYZATK6HLQUOSB6GA”,“satellite_id”:“12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S”,“uplink_public_key”:{},“storage_node_id”:“1KfnVA6YNoA1HJ1akQ8LWp9YD7sMcEfAvksdfEQm23MDrwwGra”,“piece_id”:“PDETGSCVVLQHHEYHM6LADCJXGTCPOGQF4C33UHS337SAFOHUCVAA”,“limit”:768,“action”:5,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-07-28T18:42:24.059210435Z”,“order_creation”:“2020-07-26T18:42:24.060021519Z”,“satellite_signature”:“MEUCIQCsRemSFhHSyQYE2UcKMeHh5bdDQISDfoQZcb54MgH2HgIgF3AyObP1vktDNGk6RIWiS2mCUOtiaUSjRwIxKwqf4gI=”,“satellite_address”:{}},“order”:{“serial_number”:“AAAAAAC7EBYZATK6HLQUOSB6GA”,“amount”:768,“uplink_signature”:“FrCFXNCyTlcvzGWVIOL1XzybXJdegMEG7pHE+9/mLu0slpDebcoDC++vTAaGjKgQgOEH5xztCrbtwtgdn2kLCw==”}}}
2020-11-03T23:29:32.204+0200 INFO orders.12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S finished
2020-11-03T23:29:32.204+0200 ERROR orders.12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S failed to settle orders {“error”: “order: failed to receive settlement response: endpoint disabled; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.206+0200 ERROR orders.1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE rpc client error when receiving new order settlements {“error”: “order: failed to receive settlement response: endpoint disabled”, “errorVerbose”: “order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.399+0200 ERROR orders.1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE 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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“AAAAAAC7EBK7GMX3W5ASVJAJJA”,“satellite_id”:“1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE”,“uplink_public_key”:{},“storage_node_id”:“1KfnVA6YNoA1HJ1akQ8LWp9YD7sMcEfAvksdfEQm23MDrwwGra”,“piece_id”:“EOGQZPUR6D3GFJ2YVAFROOJWI3XYA7DVIFYLQSOZOO6D6RPXWMIQ”,“limit”:1045248,“action”:5,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-07-28T16:44:35.025986814Z”,“order_creation”:“2020-07-26T16:44:35.026929691Z”,“satellite_signature”:“MEUCIG/SSYo4KL7ADgsfCitU2A1AavDX1TEGIY1llZ3BAiIqAiEAgZwcMgwJ488hyKIg8ZGBkfkJ3UjHISnkSxlYSaq6Gsg=”,“satellite_address”:{}},“order”:{“serial_number”:“AAAAAAC7EBK7GMX3W5ASVJAJJA”,“amount”:1045248,“uplink_signature”:“zGbw4EJmzIAT6rJKxfxKg5hvd8LoE8UmODm9uifpvQjKrx/1RILYPgiYsRnAcwJYX+MlwMuijlPF4WzLSc16Bg==”}}}
2020-11-03T23:29:32.399+0200 INFO orders.1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE finished
2020-11-03T23:29:32.399+0200 ERROR orders.1wFTAgs9DP5RSnCqKV1eLf6N9wtk4EAtmN5DpSxcs8EjT69tGE failed to settle orders {“error”: “order: failed to receive settlement response: endpoint disabled; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.518+0200 ERROR orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 rpc client error when receiving new order settlements {“error”: “order: failed to receive settlement response: endpoint disabled”, “errorVerbose”: “order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}
2020-11-03T23:29:32.614+0200 INFO piecestore upload started {“Piece ID”: “GZUEQOAQMJYAAPJZMJFIZDZDSQWJQCIZECYDWOBX5PRQN7ETMJPA”, “Satellite ID”: “12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S”, “Action”: “PUT”, “Available Space”: 7066276264576}
2020-11-03T23:29:32.735+0200 INFO piecestore uploaded {“Piece ID”: “GZUEQOAQMJYAAPJZMJFIZDZDSQWJQCIZECYDWOBX5PRQN7ETMJPA”, “Satellite ID”: “12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S”, “Action”: “PUT”}
2020-11-03T23:29:32.808+0200 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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”, “request”: {“limit”:{“serial_number”:“AAAAAAC7EAM3BG4YXYNETIOAYQ”,“satellite_id”:“121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6”,“uplink_public_key”:{},“storage_node_id”:“12gKT1Pwg1rdt9s3T3xrYWNoNeo8H6w9BKgb6Y6fUE3k9sLsPcD”,“piece_id”:“5TYKFLUDJ3OJMRVH2FIQSN64PBHJTL6JLKVTL3KIAHM5RFQUS6ZQ”,“limit”:512,“action”:1,“piece_expiration”:“0001-01-01T00:00:00Z”,“order_expiration”:“2020-07-28T12:27:28.585243101Z”,“order_creation”:“2020-07-26T12:27:28.588552232Z”,“satellite_signature”:“MEUCIFwTLcAQQP3YO1AWhshe7m6iaIkLEwSxNoQatcLzg6LZAiEAlhVj7Gz33yV+YvAu9eGSJ04zl2590EoSIxaqXDQdqO4=”,“satellite_address”:{}},“order”:{“serial_number”:“AAAAAAC7EAM3BG4YXYNETIOAYQ”,“amount”:512,“uplink_signature”:“OyuPolNbhCBHzdIKCyDcilwF+KuFBT4SH1qxReZDZbmcKFJ9CQHAmwqfRIwcLA17ZaoXTeSRJhXM7Y7ab7w1Bg==”}}}
2020-11-03T23:29:32.808+0200 INFO orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 finished
2020-11-03T23:29:32.808+0200 ERROR orders.121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6 failed to settle orders {“error”: “order: failed to receive settlement response: endpoint disabled; order: sending settlement agreements returned an error: EOF”, “errorVerbose”: “group:\n— order: failed to receive settlement response: endpoint disabled\n\tstorj.io/storj/storagenode/orders.(*Service).settle:350\n\tstorj.io/storj/storagenode/orders.(*Service).Settle:241\n\tstorj.io/storj/storagenode/orders.(*Service).sendOrdersFromDB.func2:219\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:322\n\tgolang.org/x/sync/errgroup.(*Group).Go.func1:57”}

ok it tooked some time and now looks like it sended all orders.

@Alexey
Я тоже нашел две ноды, где в платежах за октябрь теперь перестало показывать что был трафик.В этих двух нодах нашел много unsent orders. Удалил все файлы старее 48 часов. Более 5000 файлов. Перезапустил. После старта поудаляло файлы за вчера/сегодня.
А почему не показывает что был трафик на нодах? Платеж за октябрь меньше приблизительно на сумму этого пропавшего трафика.

1 Like

Такие уже прокисли:

Такие мало того, что прокисли, ещё и повреждены и мешают отправлять другие:

Удалите все, что старше 48 часов. И необходимо почистить unsent_order таблицу в orders.db.

Здравствуйте @RealSHELS,
Добро пожаловать на форум!

Узел сначала показывает estimation исходя из локальной статистики, а потом сателлиты присылают подтверждение того, что узел им отправил. И эта фактическая информация будет использоваться в истории оплат на dashboard.

Так как ваш узел не отправил 5000 заказов, то и в оплату они не попали. И судя по пустой статистике трафика - именно за трафик.

@Alexey
Из удаленных unsent orders самая старая дата была около 10-12 дней назад, точно уже не помню.
А сателлит не засчитал ни один байт за весь 31 день октября. Это как-то ненормально как на меня.
Та и сам факт возникновения такой ситуации тоже не является нормой.

1 Like