You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating new project and new network topology with following commands
conv new commarcial -c agreement
cd commercial
npm i
npm run env:restart
npm cc:start -- agreement
But it many time take more than 10 minitues to install chaincode at ch1, many time fails giving above message(kindly ignore newlines on terminal generated by hitting enter key)
Are there any ceratin reasons that it takes so much time? What is meanign of this message?
The text was updated successfully, but these errors were encountered:
So on the instantiation of the contract, Fabric is going to build a new docker image where it's going to place your code and run npm i. It might timeout for multiple reasons, here are some examples:
The docker daemon doesn't have enough memory or cpu to build the images faster
The internet speed is not that good
You have a lot of dependencies and npm it's taking too much to download everything
So the timeout is a Fabric timeout just saying that the instantiation took too much time and it won't wait anymore. Make sure the doocker daemon has enough resources and that your internet speed is the best you can get. During installation time, I've seen it consume more that 1gb of ram depending on the contract.
I am creating new project and new network topology with following commands
conv new commarcial -c agreement
cd commercial
npm i
npm run env:restart
npm cc:start -- agreement
But it many time take more than 10 minitues to install chaincode at ch1, many time fails giving above message(kindly ignore newlines on terminal generated by hitting enter key)
Are there any ceratin reasons that it takes so much time? What is meanign of this message?
The text was updated successfully, but these errors were encountered: