Nightly and unstable tags? #1359
-
Hi @bryanlb and others. I see the introduction of unstable and nightly tags. Can you elaborate on what these mean and give color on what you all are running at slack? We're running astra as well and want to be up-to-date but not on unstable builds. Thanks! For clarity, i've started running HEAD in our staging environment and I'm getting nullpointer exceptions:
and i think it is due to one of 2 PRs:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
👋 Hey @autata! We should probably add some more official documentation around it, but the meaning of the tags are:
As for the second part of your question, it's a bit tricky to make major jumps between commits in Astra, since we don't support normal semantic versioning. Generally we'd recommend you stay as up to date as possible with whichever tag you choose to stick with to avoid any issues. In this case, and in the case of most deploys, the safest ordering is to deploy:
I'd recommend giving that a go and seeing if it resolves your issue with the metadata |
Beta Was this translation helpful? Give feedback.
👋 Hey @autata! We should probably add some more official documentation around it, but the meaning of the tags are:
stable
- The given commit has been running stably on our clusters for a week to two weeks (excluding dep bumps). This is generally what we run our most important clusters onunstable
- The most recent commit, which has no guarantee of working or being bug-free. This is generally what we run on our test and low traffic clustersnightly
- All the commits from that day, which in theory should include reverts/fixes assuming there's a catastrophic issue. We don't use this one much, but it can be used as a bit of a happy-medium between the twoAs for the second part of your quest…