Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Pipelines: use Redis, database data in other step

asi_lh May 5, 2024

Hi,

I'm looking for solution to use Redis or database data in other step.

Right now I used for share application files, folders data in multiple steps. This working as expected.

But how to share data stored in database or Redis on multiple steps?

2 answers

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 7, 2024

Hi @asi_lh,

Every step of a Pipelines build runs in a separate Docker container, and that container (along with any service containers) gets destroyed when the step is finished.

Artifacts are the only way to share data between steps:

Only files that are in BITBUCKET_CLONE_DIR at the end of a step can be configured as artifacts.

What you could do is create a backup file of the database in BITBUCKET_CLONE_DIR during one step and define this backup file as an artifact.

Then, in the following step, you can use this backup file to create the database with the data you had in the previous step.

Kind regards,
Theodora

asi_lh May 8, 2024

But that scenario consume time, time, time, space and effort to maintain that pipelines.

There must be some easier way.

Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 13, 2024

Hi,

The other way is to use one step only instead of five separate ones for the tasks you listed in your reply to Aron. This is the recommended way if the first four steps are needed in order to run tests.

As I already mentioned, each step of a Pipelines build runs in a separate Docker container and that container gets destroyed when the step is finished. It doesn't make a lot of sense to have a separate step (and thus a new Docker container) to install dependencies and then do nothing with these dependencies in the same step. That would be similar to spinning up a virtual machine, installing dependencies, and then destroying the virtual machine, and spinning up a new one to run your tests.

If you need certain tools (dependencies, database, etc) in order to run tests, then the recommended approach is to install them in the same step where the tests run.

Kind regards,
Theodora

asi_lh May 13, 2024

There is a way to achieve what I want to in way how I described it - separate steps without extra layer of backup database, Redis or something else.

And I already have that setup, but waiting to next month, to get next free hours ;)

Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 14, 2024

Hi,

Thank you for the update. I'm glad that the setup you have works for you. In case you would like to share data between steps, then artifacts would be the way to go.

Regarding the build minutes, if you have a server where you can run builds, you could also use one of our runners:

Runners allow you to run Pipelines builds on your own infrastructure, you can still see the build logs on Bitbucket's website, and you won’t be charged for the build minutes used by your self-hosted runner.

Kind regards,
Theodora

0 votes
Aron Gombas _Midori_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 6, 2024

I don't fully understand the use case, but custom caches may fit the bill!

asi_lh May 8, 2024

I want to separate steps by what they doing.

Steps:

  1. install dependencies
  2. prepare database
  3. prepare cache - Redis
  4. prepare indexes - Elasticsearch
  5. run tests

I don't want to have step 2, 3, 4, 5 combined in one step, because it's not elegant way. In that way, wy have ugly name for those combined steps: "prepare database + prepare external data + some other + tests". So it is not elegant way.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events