Deploy Schema Migration with Bytebase API
Bytebase is a database DevOps and CI/CD Tool for Developer, DBA and Platform Engineering teams.
It provides an intuitive GUI to manage database schema changes. On the other hand, for some teams, they may want to integrate Bytebase into their existing DevOps platform. This requires calling the Bytebase API.
In this tutorial, you will begin by creating a schema change within the Bytebase console. Then, you will proceed to run an external sample application that utilizes the API to create a similar change.
By following the step-by-step instructions provided, you will have the opportunity to explore and experiment with the Bytebase API. This will give you a practical understanding of how to incorporate it into your own application.
Prerequisites
- Docker installed
- Node.js >= v18
Start Bytebase
Make sure your Docker daemon is running. Copy and paste the commands to start Bytebase.
Bytebase is now running via Docker, and you can access it via localhost:8080
. Register the first admin account which will be granted Workspace Admin
.
Create Service Account
-
Log in as the admin user, and go to Security & Policy > Users & Groups. Click + Add User, fill in with
api-example
, choose theDBA
role that is sufficient for this tutorial and click Confirm. -
Find the newly created service account and click on Copy Service Key. We will use this token to authenticate the API calls.
Create a schema change in Bytebase Console
Let's first review how to create a schema change from console directly.
-
Stay in Bytebase console, go to
Sample Project
. Click the checkbox forhr_prod
and click Edit Schema. -
Switch Raw SQL, paste the following SQL statement and click Preview issue.
-
Click Create, after the automatic checks are done, it'll automatically roll out the change. The issue will become Done.
Create a schema change via Bytebase API
Below is an example app demonstrating the following APIs:
- List all projects
- List all database under a project
- Create a schema change issue in the project
- Get the created issue status.
-
Go to Bytebase API Example repo and clone it.
-
Copy
env-template.local
to.env.local
.Update the variables.NEXT_PUBLIC_BB_URL
:http://localhost:8080
NEXT_PUBLIC_BB_SERVICE_ACCOUNT
:api-example
NEXT_PUBLIC_BB_SERVICE_KEY
: service key copied in Step 2
-
Run the following commands to start the sample application.
-
Open the application in your browser, you'll see the following page.
-
Choose
Sample Project
, thenhr_prod
, input the following SQL and click Create New Issue. -
The issue will be created and you'll see the following page.
-
Click the link
View issue xxx in Bytebase[OPEN]
to see the issue in Bytebase Console. You'll notice the issue rolls out automatically and becomesDone
. -
Go back to the sample application, and click Refresh status. You'll see the status has changed from [OPEN] to [DONE].
-
For additional information about the example application, refer to the README in its corresponding GitHub repository.
Summary
Congratulations! You've successfully created a schema change via Bytebase API. In similar ways, you could integrate Bytebase API into your existing DevOps platform to automate your schema change process, and benefit Bytebase features such as SQL Review, Custom Approval and Schema Drift Detection.