diff --git a/core/modules/migrate_drupal/migration_templates/d7_tracker_settings.yml b/core/modules/migrate_drupal/migration_templates/d7_tracker_settings.yml
new file mode 100644
index 0000000..269c2ea
--- /dev/null
+++ b/core/modules/migrate_drupal/migration_templates/d7_tracker_settings.yml
@@ -0,0 +1,13 @@
+id: d7_tracker_settings
+label: Drupal 7 tracker settings
+migration_tags:
+  - Drupal 7
+source:
+  plugin: variable
+  variables:
+    - tracker_batch_size
+process:
+  cron_index_limit: tracker_batch_size
+destination:
+  plugin: config
+  config_name: tracker.settings
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
index e336715..ae6dfb9 100644
--- a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
+++ b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
@@ -329,6 +329,9 @@ public function load() {
       'name' => 'theme_default',
       'value' => 's:6:"bartik";',
     ))->values(array(
+      'name' => 'tracker_batch_size',
+      'value' => 'i:999;',
+    ))->values(array(
       'name' => 'user_admin_role',
       'value' => 's:1:"3";',
     ))->values(array(
@@ -440,4 +443,4 @@ public function load() {
   }
 
 }
-#6e1892883e650f9e71e165fa6737ac4c
+#55604f329d6f493c897cc3a80a0dbffe
diff --git a/core/modules/migrate_drupal/src/Tests/d7/MigrateTrackerSettingsTest.php b/core/modules/migrate_drupal/src/Tests/d7/MigrateTrackerSettingsTest.php
new file mode 100644
index 0000000..1ff17c3
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/d7/MigrateTrackerSettingsTest.php
@@ -0,0 +1,36 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\d7\MigrateTrackerSettingsTest.
+ */
+
+namespace Drupal\migrate_drupal\Tests\d7;
+
+/**
+ * Tests migration of Tracker settings to configuration.
+ *
+ * @group migrate_drupal_7
+ */
+class MigrateTrackerSettingsTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['tracker'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installConfig(['tracker']);
+    $this->loadDumps(['Variable.php']);
+    $this->executeMigration('d7_tracker_settings');
+  }
+
+  /**
+   * Tests migration of tracker's variables to configuration.
+   */
+  public function testMigration() {
+    $this->assertIdentical(999, \Drupal::config('tracker.settings')->get('cron_index_limit'));
+  }
+
+}
