## Summary This project contains Nomulus's Cloud SQL schema and schema-deployment utilities. ### Entity Relationship (ER) diagrams The following links are the ER diagrams generated from the current SQL schema: * [Full ER diagram](https://storage.googleapis.com/domain-registry-dev-er-diagram/full_er_diagram.html): shows all columns, foreign keys and indexes. * [Brief ER diagram](https://storage.googleapis.com/domain-registry-dev-er-diagram/brief_er_diagram.html): shows only significant columns, such as primary and foreign key columns, and columns that are part of unique indexes. ### Database roles and privileges Nomulus uses the 'postgres' database in the 'public' schema. The following users/roles are defined: * postgres: the initial user is used for admin and schema deployment. * In Cloud SQL, we do not control superusers. The initial 'postgres' user is a regular user with create-role/create-db privileges. Therefore, it is not possible to separate admin user and schema-deployment user. * readwrite is a role with read-write privileges on all data tables and sequences. However, it does not have write access to admin tables. Nor can it create new tables. * The Registry server user is granted this role. * readonly is a role with SELECT privileges on all tables. * Reporting job user and individual human readers may be granted this role. ### How to update the schema Currently we use Flyway for schema deployment. Versioned incremental update scripts are organized in the src/main/resources/sql/flyway folder. A Flyway 'migration' task examines the target database instance, and makes sure that only changes not yet deployed are pushed. Because we have SQL integration tests enabled to ensure that deployments are rollback-safe, which prevent Java code from executing against a version of the schema it is incompatible with, you will need to commit your schema additions in two separate PRs, with a wait for a deployment in-between, as explained in the following steps: 1. Make your changes to entity classes, remembering to add new ones to `core/src/main/resources/META-INF/persistence.xml` so they'll be picked up. 2. Run the `devTool generate_sql_schema` command to generate a new version of `db-schema.sql.generated`. The full command line to do this is: `./nom_build generateSqlSchema` 3. Write an incremental DDL script that changes the existing schema to your new one. The generated SQL file from the previous step should help. New create table statements can be used as is, whereas alter table statements should be written to change any existing tables. If an incremental file changes more than one schema element (table, index, or sequence), it MAY hit deadlocks when applied on sandbox/production where it'll be competing against live traffic that may also be locking said elements but in a different order. The `FlywayDeadlockTest` checks for this risk for every new incremental file to be merged. Simply put, the test treats any of the following as a changed element, and raises an error if a new file has more than one changed elements: * A schema element (table, index, or sequence) being altered. * The table on which an index is created without the `concurrently` modifier. Please refer to the test class's javadoc for more information. Any file failing this test should be split up according to the error message. It's OK to include these separate Flyway scripts in a single PR. This script should be stored in a new file in the `db/src/main/resources/sql/flyway` folder using the naming pattern `V{id}__{description text}.sql`, where `{id}` is the next highest number following the existing scripts in that folder. Note the double underscore in the naming pattern. 4. Run `./nom_build :db:generateFlywayIndex` to regenerate the Flyway index. This is a file listing all of the current Flyway files. Its purpose is to produce a merge conflict when more than one person adds a Flyway file with the same sequence number. 5. Run `./nom_build :nom:generate_golden_file`. This is a pseudo-task implemented in the `nom_build` script that does the following: - Runs the `:db:test` task from the Gradle root project. The SchemaTest will fail because the new schema does not match the golden file. - Copies `db/build/resources/test/testcontainer/mount/dump.txt` to the golden file `db/src/main/resources/sql/schema/nomulus.golden.sql`. - Re-runs the `:db:test` task. This time all tests should pass. You'll want to have a look at the diffs in the golden schema to verify that all changes are intentional. 6. Now, split your outstanding changes into two PRs. The first PR should _only_ include your new Flyway version `.sql` file, its addition to the `flyway.txt` index, changes to the `nomulus.golden.sql` schema file, and changes to the Entity Relationship diagram `.html` files. The second PR should include everything else, including _all_ changes to `.java` files and the `db-schema.sql.generated` changes that derive from them. 7. Submit the first PR and wait until it is successfully deployed to production, then submit the second PR. Note, if you are removing things from the schema (rather than adding them), then these PRs should be in the opposite order: Java changes first, then SQL changes afterwards. Relevant files (under `db/src/main/resources/sql/schema/`): * `nomulus.golden.sql` is the schema dump (pg_dump for postgres) of the final schema pushed by Flyway. This is mostly for informational, although it may be used in tests. * `db-schema.sql.generated` is the schema generated from ORM classes by the GenerateSqlSchema command in Nomulus tool. This reflects the ORM-layer's view of the schema. The generated schema and the golden one may diverge during schema changes. For example, when adding a new column to a table, we would deploy the change before adding it to the relevant ORM class. Therefore, for a short time the golden file will contain the new column while the generated one does not. Note that, when making schema changes, you _cannot_ add a new `NOT NULL` column to an existing table that does not have a default value, or make any other similar addition of a constraint that will be violated by existing data. If you wish to rename a column, you must first add a new column with the desired name, copy over its contents using a `@PostLoad` action in Java, re-save all rows, update the Java to no longer contain the old column, wait for a deployment, and then remove the old column. A rename operation requires the most complicated series of steps to complete, as it is effectively an add followed by a remove. ### Refactoring Column Types (Expand and Contract) When refactoring a column (such as changing its type, e.g., from a basic `boolean` to an `hstore` timed transition map), you must be extremely careful to avoid breaking running servers during rolling deployments. Because the database schema change is deployed *before* the new server code is running on all instances, the database must remain compatible with both the old and new Java code at all times. This is achieved using the **Expand and Contract** pattern: * **Case A: The old column is NOT mapped in Java.** If the old column exists in the database but was never mapped as a field in any ORM entity (i.e., it is "dead weight" in the schema), you can safely drop it immediately in the first PR. The running servers do not know it exists, so dropping it will not cause any errors. * **Case B: The old column IS mapped in Java.** If the old column is actively mapped in Java, you **cannot** drop it in the first PR. Doing so will immediately crash the running servers. Instead, you must perform a three-step migration across separate releases: 1. **First PR (DB-only):** Add the new column as nullable, migrate data from the old column, and keep the old column. 2. **Second PR (Java-only):** Update the Java ORM classes to map only the new column and ignore the old one. Wait for this to be fully deployed to 100% of production instances. 3. **Third PR (DB-only Cleanup):** Create a new Flyway migration to safely drop the old column from the database. ### Writing Safe NOT NULL Migrations for Transition Maps Nomulus avoids database-level `DEFAULT` constraints on timed transition properties (like `create_billing_cost_transitions` or `expiry_access_period_transitions`) in the long run to ensure that the application layer explicitly manages the data and fails fast if it fails to initialize a field. However, during a Two-PR deployment, the database schema change (PR 1) is live in production *before* the new Java code (PR 2) is deployed. If you add a new column as `NOT NULL` with no default in the first PR, any new inserts from the running old Java code (which doesn't know about the column) will immediately fail with a constraint violation, causing production write downtime. To satisfy both the `NOT NULL` requirement (for consistency) and backward compatibility, you must use the **Temporary Database Default** pattern across three phases: 1. **PR 1 (DB Schema Change):** * Add the column as `NOT NULL` with a temporary database-level `DEFAULT` value matching the initial state. This allows the old Java code to continue inserting rows (the database will automatically apply the default value for the missing column). * Leave a `TODO` comment in the Flyway SQL migration script to remind developers to drop the default in a subsequent release. * **PostgreSQL hstore Cast:** When writing transition map updates or defaults in SQL, **PostgreSQL requires an explicit `::hstore` cast** on string literals, otherwise the migration will fail with a type mismatch: ```sql ALTER TABLE "Tld" ADD COLUMN expiry_access_period_transitions hstore DEFAULT '"1970-01-01T00:00:00.000Z"=>"DISABLED"'::hstore NOT NULL; ``` 2. **PR 2 (Java Implementation):** * Deploy the Java changes that map the column and ensure the application layer always explicitly sets the value (e.g., in the entity builder or via Java-level defaults). * Leave a `TODO` comment in the Java code near the `@Column` annotation referencing the plan to drop the DB default. 3. **PR 3 (DB Cleanup - Contract Phase):** * Once the new Java code is fully deployed to 100% of production instances, create a new subsequent Flyway migration to safely drop the temporary database-level default constraint: ```sql -- Drop the temporary default constraint to restore the fail-fast invariant in Java ALTER TABLE "Tld" ALTER COLUMN expiry_access_period_transitions DROP DEFAULT; ``` * Remove the `TODO` comments from the SQL and Java files. ### Recommended Git Workflow for Two-PR Splits To cleanly manage a two-PR split where the second branch depends on the first, use the following chained branch workflow: 1. Implement and verify all your changes (both DB and Java) on a single implementation branch (e.g., `feature-impl`). Commit all changes in a single commit. 2. Create the database-only branch off `master`: ```shell $ git checkout master $ git checkout -b feature-db ``` 3. Checkout only the database-related files from your implementation branch and commit them: ```shell $ git checkout feature-impl -- db/src/main/resources/sql/flyway/ db/src/main/resources/sql/flyway.txt db/src/main/resources/sql/schema/nomulus.golden.sql db/src/main/resources/sql/er_diagram/ $ git commit -m "Implement database schema for feature" ``` 4. Switch back to your implementation branch and rebase it against the database branch: ```shell $ git checkout feature-impl $ git rebase feature-db ``` Git will automatically detect that the database changes are already present in the parent branch and will skip them, leaving your implementation commit containing **only** the Java changes, tests, and the ORM-generated `db-schema.sql.generated`! ### Summary of Schema Tests #### The Golden Schema Test The ":db:test" task runs a task that verifies that the database schema as specified by the entire set of Flyway scripts is valid and matches 'nomulus.golden.sql'. As mentioned in the previous section, you may run `./nom_build :nom:generate_golden_file` to update the golden schema. #### The Forbidden Flyway Script Change Detection Test Once a Flyway DDL script is deployed to Sandbox or Production, it must not be changed. During each schema deployment, Flyway checks all past scripts against its record, and aborts if any of them do not match. This test is not part of the local Gradle build. It is part of the presubmit tests for the FOSS repo. To test locally, run `./integration/run_schema_check -p domain-registry-dev` from the root directory of the Nomulus repo. #### The Server-Schema Compatibility Test This test ensures that the Nomulus server code in the current branch is compatible with the deployed schemas in Sandbox and Production; and that the schema change to be submitted is compatible with the Nomulus servers currently deployed to Sandbox and Production. Note that this test fetches schemas packaged in the appropriate release artifacts, not from the live database. This test is not part of the local Gradle build. It is part of the presubmit tests for the FOSS repo. To test locally, run the following commands from the root directory of the Nomulus repo: ```shell $ git fetch --tags # Following command tests local Java code against released schemas $ ./integration/run_compatibility_tests -p domain-registry-dev \ -s nomulus # Following command tests deployed code against local schema $ ./integration/run_compatibility_tests -p domain-registry-dev \ -s sql ``` #### The Out-Of-Band Schema Change Test This test verifies that the actual schema from the live database in Sandbox or Production matches the golden schema. It detects changes made by, e.g., operators during troubleshooting. This test is part of the Spinnaker deployment pipelines for Sandbox and Production. It is the first step in the pipeline, and halts the pipeline if the test fails. This is advantageous to testing in the last step of the pipeline, where failures sometimes escaped notice. To run this locally, run the following commands from the root directory of the Nomulus repo: ```shell $ (cd release; gcloud builds submit --config=cloudbuild-schema-verify.yaml \ --substitutions=_ENV=[sandbox|production] ..) ``` ### Schema push Currently Cloud SQL schema is released with the Nomulus server, and shares the server release's tag (e.g., `nomulus-20191101-RC00`). Automatic schema push process (to apply new changes in a released schema to the databases) has been set up as part of the overall release pipeline. Presubmit and continuous-integration tests are being implemented to ensure server/schema compatibility. Before the tests are activated, please look for breaking changes before deploying a schema. Released schema may be manually deployed using Cloud Build. Use the root project directory as working directory, run the following shell snippets: ```shell # Tags exist as folder names under gs://domain-registry-dev-deploy. SCHEMA_TAG= # Recognized environments are alpha, crash, qa, sandbox and production SQL_ENV= # Deploy on cloud build. The --project is optional if domain-registry-dev # is already your default project. gcloud builds submit --config=release/cloudbuild-schema-deploy.yaml \ --substitutions=TAG_NAME=${SCHEMA_TAG},_ENV=${SQL_ENV} \ --project domain-registry-dev # Verify by checking Flyway Schema History: ./nom_build :db:flywayInfo --dbServer=${SQL_ENV} ``` To test unsubmitted schema changes in the alpha, qa or crash environments, use the following command to deploy the local schema, ```shell ./nom_build :db:flywayMigrate --dbServer=[alpha|qa|crash] \ --environment=[alpha|qa|crash] ``` If you run into problems due to incompatible dependency versions, you may try the dependencies used by our releases: ``` ./nom_build :db:flywayMigrate --dbServer=[alpha|qa|crash] \ --environment=[alpha|qa|crash] \ --mavenUrl=https://storage.googleapis.com/domain-registry-maven-repository/maven \ --pluginsUrl=https://storage.googleapis.com/domain-registry-maven-repository/plugins ``` #### Alternative way to push to non-production The following method can be used to deploy schema to ALPHA and CRASH environments. Use this only when the Flyway task is broken. From the root of the repository: ``` $ TARGET_ENV=[alpha|qa|crash] $ BUILDER_PROJECT= $ ./nom_build :db:schema $ mkdir -p release/schema-deployer/flyway/jars release/schema-deployer/secrets $ gcloud secrets versions access latest \ --secret nomulus-tool-cloudbuild-credential \ --project domain-registry-alpha \ > release/schema-deployer/secrets/cloud_sql_credential.json $ nomulus -e ${TARGET_ENV} \ --credential release/schema-deployer/secrets/cloud_sql_credential.json \ get_sql_credential --user schema_deployer \ --output release/schema-deployer/secrets/schema_deployer_credential.dec $ cp db/build/libs/schema.jar release/schema-deployer/flyway/jars $ cd release/schema-deployer $ docker build -t schema_deployer --build-arg PROJECT_ID=${BUILDER_PROJECT} \ --build-arg TAG_NAME=latest . $ docker run -v `pwd`/secrets:/secrets \ -v `pwd`/flyway/jars:/flyway/jars -w `pwd` \ schema_deployer:latest \ migrate $ rm -r -f secrets flyway ``` #### Glass breaking If you need to deploy a schema off-cycle, try making a release first, then deploy that release schema to Cloud SQL. TODO(weiminyu): elaborate on different ways to push schema without a full release. #### Notes on Flyway Please note: to run Flyway commands, you need Cloud SDK and need to log in once. ```shell # One time login gcloud auth login ``` The Flyway-based Cloud Build schema push process is safe in common scenarios: * Repeatedly deploying the latest schema is safe. All duplicate runs become NOP. * Accidentally deploying a past schema is safe. Flyway will not undo incremental changes not reflected in the deployed schema. * Concurrent deployment runs are safe. Flyway locks its own metadata table, serializing deployment runs without affecting normal accesses. #### Schema push to local database The Flyway tasks may also be used to deploy to local instances, e.g, your own test instance. E.g., ```shell # Deploy to a local instance at standard port as the super user. ./nom_build :db:flywayMigrate --dbServer=192.168.9.2 --dbPassword=domain-registry # Full specification of all parameters ./nom_build :db:flywayMigrate --dbServer=192.168.9.2:5432 --dbUser=postgres \ --dbPassword=domain-registry ```