varasev on va-staking-dapp-light-optimization
Fix Staking DApp light optimiza… (compare)
varasev on va-staking-dapp-light-optimization
mix format (compare)
varasev on va-staking-dapp-light-optimization
Add Staking DApp light optimiza… (compare)
vbaranov on production-lukso-stg
DarkForest: apply theme to toke… Merge pull request #3540 from p… Staking dapp stats: total numbe… and 24 more (compare)
[Victor Baranov, POA Network] Hi, it is possible to run indexer separately from the web application. However, there is no benefit to run multiple instances of indexers because they will don’t know each other and will process the same data intersecting. Luckily, every fetcher in the indexer has its own batch size and concurrency. So, you can manage parallelism of each fetcher inside a single indexer instance.
Hey thanks for this response. Can you give me a pointer in the code / config where I can make these changes in the safest way possible?
Hi everyone,
when i start blockscout in docker withmake start
it shows errorWARNING: We noticed you're using the useBuiltIns option without declaring a core-js version. Currently, we assume version 2.x when no version is passed. Since this default version will likely change in future versions of Babel, we recommend explicitly setting the core-js version you are using via the corejs option. You should also be sure that the version you pass to the corejs option matches the version specified in your package.json 's dependencies section. If it doesn't, you need to run one of the following commands: npm install --save core-js@2 npm install --save core-js@3 yarn add core-js@2 yarn add core-js@3
./apps/indexer/lib/indexer
. For instance, batch size and concurrency of internal transactions fetcher is managed at these lines https://github.com/poanetwork/blockscout/blob/master/apps/indexer/lib/indexer/fetcher/internal_transaction.ex#L23-L24. Similarly, is for other fetchers.
i am running mix phx.server
and the error i am getting is:
make: Entering directory '/home/danish/work_space/blockscout/deps/keccakf1600/c_src'
LD keccakf1600.so
/usr/bin/ld: cannot find -lerl_interface
collect2: error: ld returned 1 exit status
Makefile:140: recipe for target '/home/danish/work_space/blockscout/deps/keccakf1600/c_src/../priv/keccakf1600.so' failed
make: *** [/home/danish/work_space/blockscout/deps/keccakf1600/c_src/../priv/keccakf1600.so] Error 1
make: Leaving directory '/home/danish/work_space/blockscout/deps/keccakf1600/c_src'
===> Hook for compile failed!
** (Mix) Could not compile dependency :keccakf1600, "/home/danish/.mix/rebar3 bare compile --paths /home/danish/work_space/blockscout/_build/dev/lib/*/ebin" command failed. You can recompile this dependency with "mix deps.compile keccakf1600", update it with "mix deps.update keccakf1600" or clean it with "mix deps.clean keccakf1600"
Don't now what's the problem is even i am following each and every step properly. All the packages are properly installed
any one there know how to fix it.
hello! Trying to install local instance of blockscout via docker on CatalinaOS. On step [13/14] getting an error==> Checking PostrgeSQL container
==> Starting PostgreSQL container
Error response from daemon: Failed to inspect container postgres: error during connect: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/postgres/json": EOF
Error: failed to start containers: postgres
make: *** [postgres] Error 1
which also causes the Docker Daemon to fail with 2020-11-24T22:30:54Z dockerd time="2020-11-24T22:30:54.892067393Z" level=info msg="ClientConn switching balancer to \"pick_first\"" module=grpc
have run docker pull postgres
successfully. Any other actions I can take?