Unable to get Badger to work #6298
-
Hi, I am running Jaeger all-in-one just fine using all the defaults without the need of a config file. Info: The command to start Jaeger is: config.yaml:
console output:
The problem: It seems to be starting badger but it keeps using and creating a new folder within the local user tmp folder ... so it does not retain data between restarts. Can anyone tell me what i am missing? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey @nickmarkfurness! I'm here to help you out with any bugs, questions, or contributions you have. Let's dive into this together! It looks like you're trying to configure Badger to persist data to a specific directory on Windows 10, but it's defaulting to a temporary folder. To resolve this, you need to ensure that the directory paths in your
extensions:
jaeger_storage:
backends:
some_store:
badger:
directories:
keys: "C:\\jaeger_data\\"
values: "C:\\jaeger_data\\"
ephemeral: false
another_store:
badger:
directories:
keys: "C:\\jaeger_data_archive\\"
values: "C:\\jaeger_data_archive\\"
ephemeral: false
By setting the directories to a specific path on your disk and ensuring |
Beta Was this translation helpful? Give feedback.
-
Resolved. I dropped the use of a config file and specified my overrides via startup command only: jaeger-all-in-one.exe --badger.ephemeral=false --badger.directory-key="C:\jaeger_data\keys" --badger.directory-value="C:\jaeger_data\values" To get a list of all the overrides run: jaeger-all-in-one.exe --help |
Beta Was this translation helpful? Give feedback.
Resolved. I dropped the use of a config file and specified my overrides via startup command only:
jaeger-all-in-one.exe --badger.ephemeral=false --badger.directory-key="C:\jaeger_data\keys" --badger.directory-value="C:\jaeger_data\values"
To get a list of all the overrides run:
jaeger-all-in-one.exe --help