Open h4x3rotab opened 4 years ago
Turned out it's due to a field too short. A change to the table schema is needed. After a quick change, the job is still broken though.
We just pushed on update and probably fix the issues your experiencing, after an update described in https://github.com/polkascan/polkascan-os/blob/master/README.md you can also try the following:
Check status of processed blocks at http://127.0.0.1:8080/node-template/harvester/admin If for some reason the harvester gets stuck you can try to give it a 'nudge' by pressing the 'Process' button.
Check http://127.0.0.1:8080/node-template/runtime-type if all types are supported. If not, add the custom types to: harvester/app/type_registry/substrate-node-template.json
I updated the README with some basic troubleshooting: https://github.com/polkascan/polkascan-os#add-custom-types-for-substrate-node-template
Hi I've figured out the root cause.
the root casue is default = sa.Column(sa.String(255)) overflow in our chain (276 length, but varchar max is 255).
Will you accept PR to change this field to TEXT
? our chain base on Flaming fir
which is an another reference implementation in substrate repo
We are trying to deploy a polkascan open source version. However we encountered some problems after connected to our node.
If we check the flower console, not every
app.tasks.accumulate_block_recursive
task fail.It looks like related to type_registry. We found types for Kusama, Polkadot, and a substrate-node-template. However we are based on
substrate/bin/node
, not that similar to any of the above types. We didn't find a docs to generate the type definition.So far we have tried: