Home
last modified time | relevance | path

Searched refs:sub_batch_size (Results 1 – 25 of 60) sorted by relevance

123

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/db/post_migrate/
H A D20210520012430_backfill_pk_conversion_for_self_managed.rb7 { table: :events, columns: %i(id), sub_batch_size: 500 },
8 …{ table: :push_event_payloads, columns: %i(event_id), sub_batch_size: 2500, primary_key: :event_id…
9 { table: :ci_job_artifacts, columns: %i(id job_id), sub_batch_size: 2000 },
10 { table: :ci_sources_pipelines, columns: %i(source_job_id), sub_batch_size: 100 },
11 { table: :ci_build_needs, columns: %i(build_id), sub_batch_size: 1000 },
12 { table: :ci_builds, columns: %i(id stage_id), sub_batch_size: 250 },
13 { table: :ci_builds_runner_session, columns: %i(build_id), sub_batch_size: 5000 },
14 { table: :ci_build_trace_chunks, columns: %i(build_id), sub_batch_size: 1000 }
23sub_batch_size: conversion[:sub_batch_size], primary_key: conversion.fetch(:primary_key, :id)
H A D20210519132129_backfill_ci_builds_metadata_for_bigint_conversion.rb10 backfill_conversion_of_integer_to_bigint TABLE, COLUMN, batch_size: 15000, sub_batch_size: 100
H A D20210705143150_backfill_ci_builds_metadata_id_for_bigint_conversion.rb10 backfill_conversion_of_integer_to_bigint TABLE, COLUMN, batch_size: 15000, sub_batch_size: 100
H A D20210426094549_backfill_ci_builds_for_bigint_conversion.rb14 backfill_conversion_of_integer_to_bigint TABLE, COLUMNS, batch_size: 15000, sub_batch_size: 100
H A D20210930211936_backfill_user_namespace.rb17 sub_batch_size: SUB_BATCH_SIZE
H A D20210420121149_backfill_conversion_of_ci_job_artifacts.rb11 …rsion_of_integer_to_bigint :ci_job_artifacts, %i(id job_id), batch_size: 15000, sub_batch_size: 100
H A D20210422023046_backfill_ci_sources_pipelines_source_job_id_for_bigint_conversion.rb10 batch_size: 15000, sub_batch_size: 100
H A D20210311120155_backfill_events_id_for_bigint_conversion.rb11 backfill_conversion_of_integer_to_bigint :events, :id, batch_size: 15000, sub_batch_size: 100
H A D20210415101228_backfill_ci_build_needs_for_bigint_conversion.rb12 batch_size: 15000, sub_batch_size: 100
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/background_migration/
H A Dcopy_column_using_background_migration_job_spec.rb49 … copy_columns.perform(12, 15, table_name, 'id', sub_batch_size, pause_ms, 'id', temporary_column)
58 … copy_columns.perform(10, 14, table_name, 'id', sub_batch_size, pause_ms, 'fk', temporary_column)
68 …copy_columns.perform(10, 20, table_name, 'id', sub_batch_size, pause_ms, 'name', 'name_convert_to_…
81 …subject.perform(10, 15, table_name, 'id', sub_batch_size, pause_ms, columns_to_copy_from, columns_…
93 …subject.perform(10, 15, table_name, 'id', sub_batch_size, pause_ms, columns_to_copy_from, columns_…
100 …copy_columns.perform(10, 20, table_name, 'id', sub_batch_size, pause_ms, 'name', 'name_convert_to_…
107 sub_batch_size = 2
111 … copy_columns.perform(10, 12, table_name, 'id', sub_batch_size, 5, 'name', 'name_convert_to_text')
115 sub_batch_size = 2
119 … copy_columns.perform(10, 12, table_name, 'id', sub_batch_size, -5, 'name', 'name_convert_to_text')
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/background_migration/
H A Dbackfill_namespace_traversal_ids_roots.rb19 def perform(start_id, end_id, sub_batch_size) argument
24 ranged_query.each_batch(of: sub_batch_size) do |sub_batch|
38 mark_job_as_succeeded(start_id, end_id, sub_batch_size)
H A Ddrop_invalid_security_findings.rb16 def perform(start_id, end_id, sub_batch_size) argument
21 ranged_query.each_batch(of: sub_batch_size) do |sub_batch|
34 mark_job_as_succeeded(start_id, end_id, sub_batch_size)
H A Dbackfill_namespace_traversal_ids_children.rb19 def perform(start_id, end_id, sub_batch_size) argument
21 batch_query.each_batch(of: sub_batch_size) do |sub_batch|
39 mark_job_as_succeeded(start_id, end_id, sub_batch_size)
H A Dbackfill_projects_with_coverage.rb14 def perform(start_id, end_id, sub_batch_size) argument
21 report_results.to_a.in_groups_of(sub_batch_size, false) do |batch|
H A Dbackfill_integrations_type_new.rb11 def perform(start_id, stop_id, batch_table, batch_column, sub_batch_size, pause_ms) argument
15 parent_batch_relation.each_batch(column: batch_column, of: sub_batch_size) do |sub_batch|
H A Dbackfill_user_namespace.rb10 def perform(start_id, end_id, batch_table, batch_column, sub_batch_size, pause_ms) argument
12 …parent_batch_relation.each_batch(column: batch_column, of: sub_batch_size, order_hint: :type) do |…
H A Dcopy_column_using_background_migration_job.rb29 …def perform(start_id, end_id, batch_table, batch_column, sub_batch_size, pause_ms, copy_from, copy… argument
39 parent_batch_relation.each_batch(column: batch_column, of: sub_batch_size) do |sub_batch|
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/database/migrations/
H A Dbatched_background_migration_helpers.rb69 sub_batch_size: SUB_BATCH_SIZE
99 sub_batch_size: sub_batch_size,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/database/migrations/
H A Dbatched_background_migration_helpers_spec.rb29 sub_batch_size: 20,
44 sub_batch_size: 10)
62 sub_batch_size: 10)
74 sub_batch_size: 10,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/database/background_migration/
H A Dbatched_migration_runner_spec.rb51 sub_batch_size: migration.sub_batch_size)
80 sub_batch_size: migration.sub_batch_size)
104 sub_batch_size: 1,
133 sub_batch_size: migration.sub_batch_size)
301 sub_batch_size: 1,
329 sub_batch_size: 1,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/database/background_migration/
H A Dbatched_migration_wrapper.rb45 tracking_record.sub_batch_size,
64 metric_for(:gauge_sub_batch_size).set(base_labels, tracking_record.sub_batch_size)
H A Dbatched_migration.rb68 sub_batch_size: sub_batch_size,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/factories/gitlab/database/background_migration/
H A Dbatched_jobs.rb10 sub_batch_size { 1 }
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/db/migrate/
H A D20210520133440_backfill_taggings_for_bigint_conversion.rb10 backfill_conversion_of_integer_to_bigint TABLE, COLUMNS, batch_size: 15000, sub_batch_size: 100
/dports/graphics/flam3/flam3-3.1.1-5-g7fb50c8/
H A Dflam3-animate.c40 int sub_batch_size = argi("sub_batch_size", 10000); in main() local
208 f.sub_batch_size = sub_batch_size; in main()

123