diff --git a/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_organization_id.yml b/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_organization_id.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e13d831d7cc73cdf4354ce3261480e37c8b0ae63
--- /dev/null
+++ b/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_organization_id.yml
@@ -0,0 +1,8 @@
+---
+migration_job_name: BackfillSnippetStatisticsSnippetOrganizationId
+description: Backfills sharding key `snippet_statistics.snippet_organization_id` from `snippets`.
+feature_category: source_code_management
+introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/183124
+milestone: '17.10'
+queued_migration_version: 20250301123510
+finalized_by: # version of the migration that finalized this BBM
diff --git a/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_project_id.yml b/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_project_id.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e667b3d7825504e6de11da62a9df23b74c319cde
--- /dev/null
+++ b/db/docs/batched_background_migrations/backfill_snippet_statistics_snippet_project_id.yml
@@ -0,0 +1,8 @@
+---
+migration_job_name: BackfillSnippetStatisticsSnippetProjectId
+description: Backfills sharding key `snippet_statistics.snippet_project_id` from `snippets`.
+feature_category: source_code_management
+introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/183124
+milestone: '17.10'
+queued_migration_version: 20250301123505
+finalized_by: # version of the migration that finalized this BBM
diff --git a/db/docs/snippet_statistics.yml b/db/docs/snippet_statistics.yml
index cd43fa4ac22c73c38ec520295da1c217f4d5ccd7..a5441bb80ebe06d1d8b52fe0577b8b6bf0628537 100644
--- a/db/docs/snippet_statistics.yml
+++ b/db/docs/snippet_statistics.yml
@@ -29,3 +29,6 @@ desired_sharding_key:
         table: snippets
         sharding_key: organization_id
         belongs_to: snippet
+desired_sharding_key_migration_job_name:
+- BackfillSnippetStatisticsSnippetProjectId
+- BackfillSnippetStatisticsSnippetOrganizationId
diff --git a/db/migrate/20250301123501_add_snippet_project_id_to_snippet_statistics.rb b/db/migrate/20250301123501_add_snippet_project_id_to_snippet_statistics.rb
new file mode 100644
index 0000000000000000000000000000000000000000..ae489f07d7a5e90238ee36998c1d9697f0790e7e
--- /dev/null
+++ b/db/migrate/20250301123501_add_snippet_project_id_to_snippet_statistics.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AddSnippetProjectIdToSnippetStatistics < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+
+  def change
+    add_column :snippet_statistics, :snippet_project_id, :bigint
+  end
+end
diff --git a/db/migrate/20250301123506_add_snippet_organization_id_to_snippet_statistics.rb b/db/migrate/20250301123506_add_snippet_organization_id_to_snippet_statistics.rb
new file mode 100644
index 0000000000000000000000000000000000000000..938fe826781ce9f579fd3761f9d84e996ec9522d
--- /dev/null
+++ b/db/migrate/20250301123506_add_snippet_organization_id_to_snippet_statistics.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AddSnippetOrganizationIdToSnippetStatistics < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+
+  def change
+    add_column :snippet_statistics, :snippet_organization_id, :bigint
+  end
+end
diff --git a/db/post_migrate/20250301123502_index_snippet_statistics_on_snippet_project_id.rb b/db/post_migrate/20250301123502_index_snippet_statistics_on_snippet_project_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..5b6275e3b5ff3d079f5fc289a231423d12abe233
--- /dev/null
+++ b/db/post_migrate/20250301123502_index_snippet_statistics_on_snippet_project_id.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+class IndexSnippetStatisticsOnSnippetProjectId < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  disable_ddl_transaction!
+
+  INDEX_NAME = 'index_snippet_statistics_on_snippet_project_id'
+
+  def up
+    add_concurrent_index :snippet_statistics, :snippet_project_id, name: INDEX_NAME
+  end
+
+  def down
+    remove_concurrent_index_by_name :snippet_statistics, INDEX_NAME
+  end
+end
diff --git a/db/post_migrate/20250301123503_add_snippet_statistics_snippet_project_id_fk.rb b/db/post_migrate/20250301123503_add_snippet_statistics_snippet_project_id_fk.rb
new file mode 100644
index 0000000000000000000000000000000000000000..30dca44449514d0d1ed69cdc74da5b80e1771be7
--- /dev/null
+++ b/db/post_migrate/20250301123503_add_snippet_statistics_snippet_project_id_fk.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+class AddSnippetStatisticsSnippetProjectIdFk < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  disable_ddl_transaction!
+
+  def up
+    add_concurrent_foreign_key :snippet_statistics, :projects, column: :snippet_project_id, on_delete: :cascade
+  end
+
+  def down
+    with_lock_retries do
+      remove_foreign_key :snippet_statistics, column: :snippet_project_id
+    end
+  end
+end
diff --git a/db/post_migrate/20250301123504_add_snippet_statistics_snippet_project_id_trigger.rb b/db/post_migrate/20250301123504_add_snippet_statistics_snippet_project_id_trigger.rb
new file mode 100644
index 0000000000000000000000000000000000000000..f2a9ca8fbbc965ded3f2c0fff202dd59a3eab950
--- /dev/null
+++ b/db/post_migrate/20250301123504_add_snippet_statistics_snippet_project_id_trigger.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class AddSnippetStatisticsSnippetProjectIdTrigger < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+
+  def up
+    install_sharding_key_assignment_trigger(
+      table: :snippet_statistics,
+      sharding_key: :snippet_project_id,
+      parent_table: :snippets,
+      parent_sharding_key: :project_id,
+      foreign_key: :snippet_id
+    )
+  end
+
+  def down
+    remove_sharding_key_assignment_trigger(
+      table: :snippet_statistics,
+      sharding_key: :snippet_project_id,
+      parent_table: :snippets,
+      parent_sharding_key: :project_id,
+      foreign_key: :snippet_id
+    )
+  end
+end
diff --git a/db/post_migrate/20250301123505_queue_backfill_snippet_statistics_snippet_project_id.rb b/db/post_migrate/20250301123505_queue_backfill_snippet_statistics_snippet_project_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..7f9fd6dda3ee5ab17d69b05d04197264aefd0231
--- /dev/null
+++ b/db/post_migrate/20250301123505_queue_backfill_snippet_statistics_snippet_project_id.rb
@@ -0,0 +1,40 @@
+# frozen_string_literal: true
+
+class QueueBackfillSnippetStatisticsSnippetProjectId < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  restrict_gitlab_migration gitlab_schema: :gitlab_main_cell
+
+  MIGRATION = "BackfillSnippetStatisticsSnippetProjectId"
+  DELAY_INTERVAL = 2.minutes
+  BATCH_SIZE = 1000
+  SUB_BATCH_SIZE = 100
+
+  def up
+    queue_batched_background_migration(
+      MIGRATION,
+      :snippet_statistics,
+      :snippet_id,
+      :snippet_project_id,
+      :snippets,
+      :project_id,
+      :snippet_id,
+      job_interval: DELAY_INTERVAL,
+      batch_size: BATCH_SIZE,
+      sub_batch_size: SUB_BATCH_SIZE
+    )
+  end
+
+  def down
+    delete_batched_background_migration(
+      MIGRATION,
+      :snippet_statistics,
+      :snippet_id,
+      [
+        :snippet_project_id,
+        :snippets,
+        :project_id,
+        :snippet_id
+      ]
+    )
+  end
+end
diff --git a/db/post_migrate/20250301123507_index_snippet_statistics_on_snippet_organization_id.rb b/db/post_migrate/20250301123507_index_snippet_statistics_on_snippet_organization_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..d245a41bd017f43301a8c09d26f1c6ddbae8aa64
--- /dev/null
+++ b/db/post_migrate/20250301123507_index_snippet_statistics_on_snippet_organization_id.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+class IndexSnippetStatisticsOnSnippetOrganizationId < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  disable_ddl_transaction!
+
+  INDEX_NAME = 'index_snippet_statistics_on_snippet_organization_id'
+
+  def up
+    add_concurrent_index :snippet_statistics, :snippet_organization_id, name: INDEX_NAME
+  end
+
+  def down
+    remove_concurrent_index_by_name :snippet_statistics, INDEX_NAME
+  end
+end
diff --git a/db/post_migrate/20250301123508_add_snippet_statistics_snippet_organization_id_fk.rb b/db/post_migrate/20250301123508_add_snippet_statistics_snippet_organization_id_fk.rb
new file mode 100644
index 0000000000000000000000000000000000000000..a0d57222018ba51e582220448decaf96d8a8933e
--- /dev/null
+++ b/db/post_migrate/20250301123508_add_snippet_statistics_snippet_organization_id_fk.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class AddSnippetStatisticsSnippetOrganizationIdFk < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  disable_ddl_transaction!
+
+  def up
+    add_concurrent_foreign_key :snippet_statistics, :organizations, column: :snippet_organization_id,
+      on_delete: :cascade
+  end
+
+  def down
+    with_lock_retries do
+      remove_foreign_key :snippet_statistics, column: :snippet_organization_id
+    end
+  end
+end
diff --git a/db/post_migrate/20250301123509_add_snippet_statistics_snippet_organization_id_trigger.rb b/db/post_migrate/20250301123509_add_snippet_statistics_snippet_organization_id_trigger.rb
new file mode 100644
index 0000000000000000000000000000000000000000..c216a933231aadbb3cf90d3ceb47abb47a0cee75
--- /dev/null
+++ b/db/post_migrate/20250301123509_add_snippet_statistics_snippet_organization_id_trigger.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class AddSnippetStatisticsSnippetOrganizationIdTrigger < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+
+  def up
+    install_sharding_key_assignment_trigger(
+      table: :snippet_statistics,
+      sharding_key: :snippet_organization_id,
+      parent_table: :snippets,
+      parent_sharding_key: :organization_id,
+      foreign_key: :snippet_id
+    )
+  end
+
+  def down
+    remove_sharding_key_assignment_trigger(
+      table: :snippet_statistics,
+      sharding_key: :snippet_organization_id,
+      parent_table: :snippets,
+      parent_sharding_key: :organization_id,
+      foreign_key: :snippet_id
+    )
+  end
+end
diff --git a/db/post_migrate/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id.rb b/db/post_migrate/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..a3d8efcb7a069fe95ed39948d04ba9a781dcdd42
--- /dev/null
+++ b/db/post_migrate/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id.rb
@@ -0,0 +1,40 @@
+# frozen_string_literal: true
+
+class QueueBackfillSnippetStatisticsSnippetOrganizationId < Gitlab::Database::Migration[2.2]
+  milestone '17.10'
+  restrict_gitlab_migration gitlab_schema: :gitlab_main_cell
+
+  MIGRATION = "BackfillSnippetStatisticsSnippetOrganizationId"
+  DELAY_INTERVAL = 2.minutes
+  BATCH_SIZE = 1000
+  SUB_BATCH_SIZE = 100
+
+  def up
+    queue_batched_background_migration(
+      MIGRATION,
+      :snippet_statistics,
+      :snippet_id,
+      :snippet_organization_id,
+      :snippets,
+      :organization_id,
+      :snippet_id,
+      job_interval: DELAY_INTERVAL,
+      batch_size: BATCH_SIZE,
+      sub_batch_size: SUB_BATCH_SIZE
+    )
+  end
+
+  def down
+    delete_batched_background_migration(
+      MIGRATION,
+      :snippet_statistics,
+      :snippet_id,
+      [
+        :snippet_organization_id,
+        :snippets,
+        :organization_id,
+        :snippet_id
+      ]
+    )
+  end
+end
diff --git a/db/schema_migrations/20250301123501 b/db/schema_migrations/20250301123501
new file mode 100644
index 0000000000000000000000000000000000000000..be82d891cb8c4217c1872d28e7bafd0cc733bf8e
--- /dev/null
+++ b/db/schema_migrations/20250301123501
@@ -0,0 +1 @@
+fff1ce4ba142255ef3a0ac79f6f02513d67325daa1a9b816a6806e3f59899617
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123502 b/db/schema_migrations/20250301123502
new file mode 100644
index 0000000000000000000000000000000000000000..3571f28406d1afc8b20fdc1b153377e50fa20e39
--- /dev/null
+++ b/db/schema_migrations/20250301123502
@@ -0,0 +1 @@
+65bb568f76d1328b42bdf18b2677ce14f4ef3196529f41e5b9a8cab8e99c6f09
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123503 b/db/schema_migrations/20250301123503
new file mode 100644
index 0000000000000000000000000000000000000000..09ef82167b2fc6c997f0570b5f4dd0947fa6b8e1
--- /dev/null
+++ b/db/schema_migrations/20250301123503
@@ -0,0 +1 @@
+e57b7cd658283f9928f0de88ae231fae38f9939a165ba4794d7551fecfda226c
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123504 b/db/schema_migrations/20250301123504
new file mode 100644
index 0000000000000000000000000000000000000000..52370bff32ee969f8f7b652c72397e12480f7ad1
--- /dev/null
+++ b/db/schema_migrations/20250301123504
@@ -0,0 +1 @@
+e2d5366ddcbee843a1219bb28892f46d195072f96fdd94fca59225de63c53880
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123505 b/db/schema_migrations/20250301123505
new file mode 100644
index 0000000000000000000000000000000000000000..319dfb0457315674a3c4bc75240298c5d67094d5
--- /dev/null
+++ b/db/schema_migrations/20250301123505
@@ -0,0 +1 @@
+f6840c0ace9946241d10b69450f6cc4bcc1c041aca6a62b82231fcc180aa865e
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123506 b/db/schema_migrations/20250301123506
new file mode 100644
index 0000000000000000000000000000000000000000..83f4be460600136acf3054db94bf6a1192ecd03e
--- /dev/null
+++ b/db/schema_migrations/20250301123506
@@ -0,0 +1 @@
+07e7b49247aeb9e661758fc38ea81d27fe02828e5d27c454af01b8618e1466b2
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123507 b/db/schema_migrations/20250301123507
new file mode 100644
index 0000000000000000000000000000000000000000..a6dcc8abb0d697a697949bffee05786807042901
--- /dev/null
+++ b/db/schema_migrations/20250301123507
@@ -0,0 +1 @@
+8cf550427f43a5e61244e8fb86275d0f4611792fa8d0be91c577a1c404c4f372
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123508 b/db/schema_migrations/20250301123508
new file mode 100644
index 0000000000000000000000000000000000000000..3fe9868a1e7b291738f4b3c5b696e4eda2467455
--- /dev/null
+++ b/db/schema_migrations/20250301123508
@@ -0,0 +1 @@
+da04cd942c261924311cf838c45dbf22da34c2846439c5c8e3fea36a477fa674
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123509 b/db/schema_migrations/20250301123509
new file mode 100644
index 0000000000000000000000000000000000000000..8ae1876492b49428f414a6bb02d52f6b4d3a232d
--- /dev/null
+++ b/db/schema_migrations/20250301123509
@@ -0,0 +1 @@
+a5d23dc44d5b5c7f432c149c028dc6f9d188f269a21c1d52083efd711443cd75
\ No newline at end of file
diff --git a/db/schema_migrations/20250301123510 b/db/schema_migrations/20250301123510
new file mode 100644
index 0000000000000000000000000000000000000000..85bf473c710608ff8f506ec777ad96ae76a8936f
--- /dev/null
+++ b/db/schema_migrations/20250301123510
@@ -0,0 +1 @@
+51ecfc14b582f0384011129e71e1c411e8e5b277395fd9fb7594b1328b361f77
\ No newline at end of file
diff --git a/db/structure.sql b/db/structure.sql
index a1ebf47055f9714ce4afd0a1658871759b17a713..5c56c0172e34e96bea11e81099c2b0caf09ad0ce 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -1686,6 +1686,22 @@ RETURN NEW;
 END
 $$;
 
+CREATE FUNCTION trigger_309294c3b889() RETURNS trigger
+    LANGUAGE plpgsql
+    AS $$
+BEGIN
+IF NEW."snippet_project_id" IS NULL THEN
+  SELECT "project_id"
+  INTO NEW."snippet_project_id"
+  FROM "snippets"
+  WHERE "snippets"."id" = NEW."snippet_id";
+END IF;
+
+RETURN NEW;
+
+END
+$$;
+
 CREATE FUNCTION trigger_3691f9f6a69f() RETURNS trigger
     LANGUAGE plpgsql
     AS $$
@@ -3507,6 +3523,22 @@ RETURN NEW;
 END
 $$;
 
+CREATE FUNCTION trigger_cdfa6500a121() RETURNS trigger
+    LANGUAGE plpgsql
+    AS $$
+BEGIN
+IF NEW."snippet_organization_id" IS NULL THEN
+  SELECT "organization_id"
+  INTO NEW."snippet_organization_id"
+  FROM "snippets"
+  WHERE "snippets"."id" = NEW."snippet_id";
+END IF;
+
+RETURN NEW;
+
+END
+$$;
+
 CREATE FUNCTION trigger_cf646a118cbb() RETURNS trigger
     LANGUAGE plpgsql
     AS $$
@@ -22099,7 +22131,9 @@ CREATE TABLE snippet_statistics (
     snippet_id bigint NOT NULL,
     repository_size bigint DEFAULT 0 NOT NULL,
     file_count bigint DEFAULT 0 NOT NULL,
-    commit_count bigint DEFAULT 0 NOT NULL
+    commit_count bigint DEFAULT 0 NOT NULL,
+    snippet_project_id bigint,
+    snippet_organization_id bigint
 );
 
 CREATE TABLE snippet_user_mentions (
@@ -35712,6 +35746,10 @@ CREATE INDEX index_snippet_repository_storage_moves_on_snippet_project_id ON sni
 
 CREATE INDEX index_snippet_repository_storage_moves_on_state ON snippet_repository_storage_moves USING btree (state) WHERE (state = ANY (ARRAY[2, 3]));
 
+CREATE INDEX index_snippet_statistics_on_snippet_organization_id ON snippet_statistics USING btree (snippet_organization_id);
+
+CREATE INDEX index_snippet_statistics_on_snippet_project_id ON snippet_statistics USING btree (snippet_project_id);
+
 CREATE UNIQUE INDEX index_snippet_user_mentions_on_note_id ON snippet_user_mentions USING btree (note_id) WHERE (note_id IS NOT NULL);
 
 CREATE INDEX index_snippet_user_mentions_on_snippet_organization_id ON snippet_user_mentions USING btree (snippet_organization_id);
@@ -39028,6 +39066,8 @@ CREATE TRIGGER trigger_2dafd0d13605 BEFORE INSERT OR UPDATE ON pages_domain_acme
 
 CREATE TRIGGER trigger_30209d0fba3e BEFORE INSERT OR UPDATE ON alert_management_alert_user_mentions FOR EACH ROW EXECUTE FUNCTION trigger_30209d0fba3e();
 
+CREATE TRIGGER trigger_309294c3b889 BEFORE INSERT OR UPDATE ON snippet_statistics FOR EACH ROW EXECUTE FUNCTION trigger_309294c3b889();
+
 CREATE TRIGGER trigger_36cb404f9a02 BEFORE INSERT OR UPDATE ON bulk_import_failures FOR EACH ROW EXECUTE FUNCTION trigger_36cb404f9a02();
 
 CREATE TRIGGER trigger_388de55cd36c BEFORE INSERT OR UPDATE ON ci_builds_runner_session FOR EACH ROW EXECUTE FUNCTION trigger_388de55cd36c();
@@ -39264,6 +39304,8 @@ CREATE TRIGGER trigger_cbecfadbc3e8 BEFORE INSERT ON project_security_settings F
 
 CREATE TRIGGER trigger_cd50823537a3 BEFORE INSERT OR UPDATE ON issuable_slas FOR EACH ROW EXECUTE FUNCTION trigger_cd50823537a3();
 
+CREATE TRIGGER trigger_cdfa6500a121 BEFORE INSERT OR UPDATE ON snippet_statistics FOR EACH ROW EXECUTE FUNCTION trigger_cdfa6500a121();
+
 CREATE TRIGGER trigger_cf646a118cbb BEFORE INSERT OR UPDATE ON milestone_releases FOR EACH ROW EXECUTE FUNCTION trigger_cf646a118cbb();
 
 CREATE TRIGGER trigger_cfbec3f07e2b BEFORE INSERT OR UPDATE ON deployment_merge_requests FOR EACH ROW EXECUTE FUNCTION trigger_cfbec3f07e2b();
@@ -40311,6 +40353,9 @@ ALTER TABLE ONLY work_item_number_field_values
 ALTER TABLE ONLY packages_conan_metadata
     ADD CONSTRAINT fk_7302a29cd9 FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE;
 
+ALTER TABLE ONLY snippet_statistics
+    ADD CONSTRAINT fk_73a34da7d8 FOREIGN KEY (snippet_organization_id) REFERENCES organizations(id) ON DELETE CASCADE;
+
 ALTER TABLE ONLY index_statuses
     ADD CONSTRAINT fk_74b2492545 FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE;
 
@@ -40737,6 +40782,9 @@ ALTER TABLE ONLY merge_requests
 ALTER TABLE ONLY security_pipeline_execution_project_schedules
     ADD CONSTRAINT fk_a766128d99 FOREIGN KEY (security_policy_id) REFERENCES security_policies(id) ON DELETE CASCADE;
 
+ALTER TABLE ONLY snippet_statistics
+    ADD CONSTRAINT fk_a8031c4c3e FOREIGN KEY (snippet_project_id) REFERENCES projects(id) ON DELETE CASCADE;
+
 ALTER TABLE ONLY merge_requests_closing_issues
     ADD CONSTRAINT fk_a8703820ae FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE;
 
diff --git a/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id.rb b/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6f74e0a2dba39878f28f78fc9ee49e34096038b9
--- /dev/null
+++ b/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+module Gitlab
+  module BackgroundMigration
+    class BackfillSnippetStatisticsSnippetOrganizationId < BackfillDesiredShardingKeyJob
+      operation_name :backfill_snippet_statistics_snippet_organization_id
+      feature_category :source_code_management
+    end
+  end
+end
diff --git a/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id.rb b/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id.rb
new file mode 100644
index 0000000000000000000000000000000000000000..9a09f682340285a1b00681855637ec09e95a6713
--- /dev/null
+++ b/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+module Gitlab
+  module BackgroundMigration
+    class BackfillSnippetStatisticsSnippetProjectId < BackfillDesiredShardingKeyJob
+      operation_name :backfill_snippet_statistics_snippet_project_id
+      feature_category :source_code_management
+    end
+  end
+end
diff --git a/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id_spec.rb b/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..960e0c9cdc139b3727851d930893fa072f1b56f5
--- /dev/null
+++ b/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_organization_id_spec.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::BackgroundMigration::BackfillSnippetStatisticsSnippetOrganizationId,
+  feature_category: :source_code_management,
+  schema: 20250301123506 do
+  include_examples 'desired sharding key backfill job' do
+    let(:batch_table) { :snippet_statistics }
+    let(:backfill_column) { :snippet_organization_id }
+    let(:batch_column) { :snippet_id }
+    let(:backfill_via_table) { :snippets }
+    let(:backfill_via_column) { :organization_id }
+    let(:backfill_via_foreign_key) { :snippet_id }
+  end
+end
diff --git a/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id_spec.rb b/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6e3b5824f0c08ae58d5e96515afa9ae6718d45f2
--- /dev/null
+++ b/spec/lib/gitlab/background_migration/backfill_snippet_statistics_snippet_project_id_spec.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Gitlab::BackgroundMigration::BackfillSnippetStatisticsSnippetProjectId,
+  feature_category: :source_code_management,
+  schema: 20250301123501 do
+  include_examples 'desired sharding key backfill job' do
+    let(:batch_table) { :snippet_statistics }
+    let(:backfill_column) { :snippet_project_id }
+    let(:batch_column) { :snippet_id }
+    let(:backfill_via_table) { :snippets }
+    let(:backfill_via_column) { :project_id }
+    let(:backfill_via_foreign_key) { :snippet_id }
+  end
+end
diff --git a/spec/migrations/20250301123505_queue_backfill_snippet_statistics_snippet_project_id_spec.rb b/spec/migrations/20250301123505_queue_backfill_snippet_statistics_snippet_project_id_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..6e48af3e4de150cae98740e91c78cba09b7e7dc1
--- /dev/null
+++ b/spec/migrations/20250301123505_queue_backfill_snippet_statistics_snippet_project_id_spec.rb
@@ -0,0 +1,33 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe QueueBackfillSnippetStatisticsSnippetProjectId, feature_category: :source_code_management do
+  let!(:batched_migration) { described_class::MIGRATION }
+
+  it 'schedules a new batched migration' do
+    reversible_migration do |migration|
+      migration.before -> {
+        expect(batched_migration).not_to have_scheduled_batched_migration
+      }
+
+      migration.after -> {
+        expect(batched_migration).to have_scheduled_batched_migration(
+          table_name: :snippet_statistics,
+          column_name: :snippet_id,
+          interval: described_class::DELAY_INTERVAL,
+          batch_size: described_class::BATCH_SIZE,
+          sub_batch_size: described_class::SUB_BATCH_SIZE,
+          gitlab_schema: :gitlab_main_cell,
+          job_arguments: [
+            :snippet_project_id,
+            :snippets,
+            :project_id,
+            :snippet_id
+          ]
+        )
+      }
+    end
+  end
+end
diff --git a/spec/migrations/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id_spec.rb b/spec/migrations/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..b488fb47b869f7db90455ddcc2c8a0e294fd4f3b
--- /dev/null
+++ b/spec/migrations/20250301123510_queue_backfill_snippet_statistics_snippet_organization_id_spec.rb
@@ -0,0 +1,33 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe QueueBackfillSnippetStatisticsSnippetOrganizationId, feature_category: :source_code_management do
+  let!(:batched_migration) { described_class::MIGRATION }
+
+  it 'schedules a new batched migration' do
+    reversible_migration do |migration|
+      migration.before -> {
+        expect(batched_migration).not_to have_scheduled_batched_migration
+      }
+
+      migration.after -> {
+        expect(batched_migration).to have_scheduled_batched_migration(
+          table_name: :snippet_statistics,
+          column_name: :snippet_id,
+          interval: described_class::DELAY_INTERVAL,
+          batch_size: described_class::BATCH_SIZE,
+          sub_batch_size: described_class::SUB_BATCH_SIZE,
+          gitlab_schema: :gitlab_main_cell,
+          job_arguments: [
+            :snippet_organization_id,
+            :snippets,
+            :organization_id,
+            :snippet_id
+          ]
+        )
+      }
+    end
+  end
+end