fauna schema commit
Applies a staged schema change to a database.
Syntax
fauna schema commit [-y | --no-input] [--[no-]color ] [--dir <value>]
[--endpoint <value>] [--environment <value>] [--help]
[--secret <value>] [--timeout <value>] [--url <value>]
Description
fauna schema commit command applies a staged schema change
to a database.
Staged schema status
You can only apply a staged schema that has a status of ready. You can check a
staged schema’s status using the
fauna schema status command.
If you run fauna schema commit and the staged schema is not ready, the
command returns an error:
› Error: Schema is not ready to be committed
No staged schema change
If the database has no staged schema, the command returns an error:
› Error: There is no staged schema to commit
To stage a schema change, use the
fauna schema push command. See Run a staged schema change.
Options
| Option | Description |
|---|---|
|
Commit the change without confirmation input. |
|
Enables or disables color formatting for the output. Color formatting is
enabled by default if the terminal supports it (determined using
chalk/supports-color). Use
|
|
A local directory of |
|
Fauna server endpoint. |
|
Environment to use from |
|
Help for the command. |
|
Authentication secret. Overrides the
secret in Use a scoped key to interact with a child database using a parent database’s admin key. For example, with a parent database’s admin key secret of |
|
Connection timeout in milliseconds. |
|
Database URL. Overrides the |
Examples
Basic example
To commit a staged schema change with a ready status:
fauna schema commit
By default, the command returns a semantic diff of the staged schema changes and requires a confirmation to commit the changes:
Connected to endpoint: cloud-us
* Modifying collection `Customer` at collections.fsl:3:1:
* Indexes:
+ add index `byName`
? Accept and commit these changes? (y/N)
Commit a staged schema change without input
Use the --no-input option or its -y alias to commit a staged schema change
without prompting for confirmation or displaying a diff. This is useful for
using the command programmatically, such as in a CI/CD workflow.
fauna schema commit --no-input
Or:
fauna schema commit -y
Run a staged schema change
You use the schema commit command as part of a
staged schema change.
A staged schema change lets you change one or more collection schema without index downtime due to index builds.
To run a staged schema change, you must use the Fauna CLI or the Fauna Core HTTP API’s Schema endpoints.
You can’t run a staged schema change using FQL schema methods or the Fauna Dashboard.
To run a staged schema change using the Fauna CLI:
-
Make the desired changes to
.fslfiles in your schema directory.You can’t use a staged schema change to delete or rename schema. Instead, delete or rename the schema in a separate unstaged schema change.
-
Use
fauna schema pushto stage the schema changes.fauna schema pushstages schema changes by default:# Replace 'us' with your preferred region group: # 'us' (United States), 'eu' (Europe), or `global`. # Replace 'my_db' with your database's name. fauna schema push \ --database us/my_db \ --dir /path/to/schema/dirA database can have one staged schema change at a time. You can update staged schema using
fauna schema push.When a database has staged schema, any access or updates done using FQL’s schema commands on related system collections interact with the staged schema, not the database’s active schema.
For example, when schema changes are staged,
Collection.all()returnsCollectiondocuments for the staged collection schema, not the database’sCollectiondocuments.If a database has staged schema, you can’t edit the database’s active schema using FQL, the Dashboard, or an unstaged schema change. You must first abandon the staged schema change.
-
Use
fauna schema statusto check the status of the staged schema:fauna schema status \ --database us/my_dbPossible statuses:
Staged status Description pendingChanges are being processed. New indexes are still being built.
readyAll indexes have been built. Changes are ready to commit.
failedThere was an error during the staging process.
-
When the status is
ready, usefauna schema committo apply the staged schema to the database:fauna schema commit \ --database us/my_dbYou can only commit staged schema with a status of
ready.If you no longer wish to apply the staged schema or if the status is
failed, usefauna schema abandonto unstage the schema:fauna schema abandon \ --database us/my_db