debian-mirror-gitlab/doc/development/database/index.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
4.5 KiB
Markdown
Raw Normal View History

2021-01-03 14:25:43 +05:30
---
2022-07-23 23:45:48 +05:30
stage: Data Stores
2021-01-03 14:25:43 +05:30
group: Database
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-03 14:25:43 +05:30
---
2020-06-23 00:09:42 +05:30
# Database guides
2020-07-28 23:09:34 +05:30
## Database Reviews
- If you're creating a database MR for review, check out our [Database review guidelines](../database_review.md).
It provides an introduction on database-related changes, migrations, and complex SQL queries.
- If you're a database reviewer or want to become one, check out our [introduction to reviewing database changes](database_reviewer_guidelines.md).
2020-06-23 00:09:42 +05:30
## Tooling
2022-08-27 11:52:29 +05:30
- [Understanding EXPLAIN plans](understanding_explain_plans.md)
2020-06-23 00:09:42 +05:30
- [explain.depesz.com](https://explain.depesz.com/) or [explain.dalibo.com](https://explain.dalibo.com/) for visualizing the output of `EXPLAIN`
2021-04-29 21:17:54 +05:30
- [pgFormatter](https://sqlformat.darold.net/) a PostgreSQL SQL syntax beautifier
2022-04-04 11:22:00 +05:30
- [db:check-migrations job](dbcheck-migrations-job.md)
2020-06-23 00:09:42 +05:30
## Migrations
2022-08-27 11:52:29 +05:30
- [Different types of migrations](../migration_style_guide.md#choose-an-appropriate-migration-type)
- [Create a regular migration](../migration_style_guide.md#create-a-regular-schema-migration), including creating new models
- [Post-deployment migrations guidelines](post_deployment_migrations.md) and [how to create one](post_deployment_migrations.md#creating-migrations)
- [Background migrations guidelines](background_migrations.md)
- [Batched background migrations guidelines](batched_background_migrations.md)
- [Deleting migrations](deleting_migrations.md)
- [Running database migrations](database_debugging.md#migration-wrangling)
2022-06-21 17:19:12 +05:30
- [Migrations for multiple databases](migrations_for_multiple_databases.md)
- [Avoiding downtime in migrations](avoiding_downtime_in_migrations.md)
2022-08-27 11:52:29 +05:30
- [When and how to write Rails migrations tests](../testing_guide/testing_migrations_guide.md)
2020-06-23 00:09:42 +05:30
- [Migrations style guide](../migration_style_guide.md) for creating safe SQL migrations
- [Testing Rails migrations](../testing_guide/testing_migrations_guide.md) guide
2022-06-21 17:19:12 +05:30
- [Post deployment migrations](post_deployment_migrations.md)
- [Background migrations](background_migrations.md)
2022-08-27 11:52:29 +05:30
- [Swapping tables](swapping_tables.md)
2022-06-21 17:19:12 +05:30
- [Deleting migrations](deleting_migrations.md)
2022-08-27 11:52:29 +05:30
- [SQL guidelines](../sql.md) for working with SQL queries
2021-01-03 14:25:43 +05:30
- [Partitioning tables](table_partitioning.md)
2020-06-23 00:09:42 +05:30
## Debugging
2022-08-27 11:52:29 +05:30
- [Resetting the database](database_debugging.md#delete-everything-and-start-over)
- [Accessing the database](database_debugging.md#manually-access-the-database)
- [Troubleshooting and debugging the database](database_debugging.md)
- Tracing the source of an SQL query using query comments with [Marginalia](database_query_comments.md)
2020-06-23 00:09:42 +05:30
- Tracing the source of an SQL query in Rails console using [Verbose Query Logs](https://guides.rubyonrails.org/debugging_rails_applications.html#verbose-query-logs)
## Best practices
2022-08-27 11:52:29 +05:30
- [Adding database indexes](adding_database_indexes.md)
- [Foreign keys & associations](foreign_keys.md)
2020-06-23 00:09:42 +05:30
- [Adding a foreign key constraint to an existing column](add_foreign_key_to_existing_column.md)
- [`NOT NULL` constraints](not_null_constraints.md)
- [Strings and the Text data type](strings_and_the_text_data_type.md)
2022-08-27 11:52:29 +05:30
- [Single table inheritance](single_table_inheritance.md)
- [Polymorphic associations](polymorphic_associations.md)
- [Serializing data](serializing_data.md)
- [Hash indexes](hash_indexes.md)
- [Storing SHA1 hashes as binary](sha1_as_binary.md)
- [Iterating tables in batches](iterating_tables_in_batches.md)
- [Insert into tables in batches](insert_into_tables_in_batches.md)
- [Ordering table columns](ordering_table_columns.md)
- [Verifying database capabilities](verifying_database_capabilities.md)
- [Query Count Limits](query_count_limits.md)
- [Creating enums](creating_enums.md)
2021-01-03 14:25:43 +05:30
- [Client-side connection-pool](client_side_connection_pool.md)
2021-01-29 00:20:46 +05:30
- [Updating multiple values](setting_multiple_values.md)
- [Constraints naming conventions](constraint_naming_convention.md)
2022-08-27 11:52:29 +05:30
- [Query performance guidelines](query_performance.md)
2021-06-08 01:23:25 +05:30
- [Pagination guidelines](pagination_guidelines.md)
- [Pagination performance guidelines](pagination_performance_guidelines.md)
2021-11-11 11:23:49 +05:30
- [Efficient `IN` operator queries](efficient_in_operator_queries.md)
2022-06-21 17:19:12 +05:30
- [Data layout and access patterns](layout_and_access_patterns.md)
2020-06-23 00:09:42 +05:30
## Case studies
2022-08-27 11:52:29 +05:30
- [Database case study: Filtering by label](filtering_by_label.md)
- [Database case study: Namespaces storage statistics](namespaces_storage_statistics.md)
2021-01-29 00:20:46 +05:30
## Miscellaneous
- [Maintenance operations](maintenance_operations.md)
2021-04-17 20:07:23 +05:30
- [Update multiple database objects](setting_multiple_values.md)