Hi all,
i'm trying to start kbn development enviroment to create my first plugin.
I follow the guide in this link: getting started
- fork from kibana repo
- clone the repo on my local
- bootstrap kibana
I can bootstrap properly kibana with a success message at the end, i can also start kibana with:
yarn start
but i'm finding problems with elastic and the command:
yarn es snapshot.
Basically it remains stucked with this trace:
C:\Users\mario.rossi\kibana>yarn es snapshot --version 7.13.2
yarn run v1.22.10
warning package.json: "dependencies" has dependency "@elastic/apm-rum" with range "^5.8.0" that collides with a dependency in "devDependencies" of the same name with version "^5.6.1"
warning package.json: "dependencies" has dependency "@elastic/apm-rum-react" with range "^1.2.11" that collides with a dependency in "devDependencies" of the same name with version "^1.2.5"
$ node scripts/es snapshot --version 7.13.2
info Installing from snapshot
│ info version: 7.13.2
│ info install path: C:\Users\mario.rossi\kibana\.es\7.13.2
│ info license: basic
│ info Downloading snapshot manifest from https://storage.googleapis.com/kibana-ci-es-snapshots-daily/7.13.2/manifest-latest-verified.json
│ info verifying cache of https://storage.googleapis.com/kibana-ci-es-snapshots-daily/7.13.2/archives/20210613-194436_04715f2a747/elasticsearch-7.13.2-SNAPSHOT-windows-x86_64.zip
│ info etags match, reusing cache from 2021-06-22T15:23:17.620Z
│ info install directory already exists, removing
│ info extracting C:\Users\mario.rossi\kibana\.es\cache\elasticsearch-7.13.2-SNAPSHOT-windows-x86_64.zip
│ info extracted to C:\Users\mario.rossi\kibana\.es\7.13.2
│ info created C:\Users\mario.rossi\kibana\.es\7.13.2\ES_TMPDIR
after three hours, the process is not finished yet. I think something is not working but i don't know how to solve this. Any help?
I also tried with default version 8.0.0. with the same result.
Thx in advance.