vbaranov on master
Cut CSS export tests (compare)
vbaranov on master
Cut CSS export from master bran… (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.