No results for ""
EXPAND ALL
  • Home
  • API docs

GIVE DOCS FEEDBACK

Python SDK 8.x to 9.0 migration guide

Read time: 4 minutes
Last edited: Mar 04, 2024

Overview

This topic explains the changes in the Python SDK 9.0 release and how to migrate to that version.

Version 9.0 includes breaking changes. It is no longer possible to create a user; you can only create contexts. To learn more, read Understanding what was removed. Additionally, if you use the Relay Proxy, you must update your Relay Proxy to version 8.0 before you update your SDK to version 9.0. To learn more, read the Relay Proxy 8.0 release notes.

The Python SDK version 9.0 now only supports Python version 3.8.0 and higher. Previous Python SDKs included support for Python 3.7.

Version 9.0 also introduces the ability to manage migrations or modernizations. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes.

You will need this functionality to use migration flags. A migration flag is a temporary flag used to migrate data or systems while keeping your application available and disruption free. To learn more, read Migration flags.

Before you migrate to version 9.0, we recommend updating to the latest 8.x version. If you update to the latest 8.x version, deprecation warnings appear in areas of your code that need to be changed for 9.0, for example, any use of LDUser. You can update these areas at your own pace while still using 8.x, rather than migrating everything simultaneously. To learn more about updating to the latest 8.x version, visit the SDK's GitHub repository.

Understanding how to manage a migration

Depending on how you created your migration feature flag, your migration will have two, four, or six stages. At each stage, you will be reading data from the old system, the new system, or both. You will also be writing data to the old system, the new system, or both. At each stage, only one of these destinations is considered the authoritative source. In the LaunchDarkly SDK, you can determine which stage of the migration your application is currently in, execute the appropriate read and write methods, and then compare the results to check correctness and view any errors or changes in latency.

To manage your migration:

  • Configure the migration
  • Call the read and write methods you defined

Configuring the migration

There are two categories of migration options that you can configure for each LaunchDarkly SDK:

  • Options for reading and writing data: You can define how to read from and write to both the old system and the new system. You can also define a method to check whether the two reads are a match, and whether the migration should execute serially or concurrently. To learn how these options apply to each migration stage, read Using SDKs to manage a migration.
  • Options for tracking metrics: You can configure whether the SDK should track latency and errors, so that you can monitor the performance of your application during the migration.

Here's how:

from ldclient import Result, MigratorBuilder, ExecutionOrder
builder = MigratorBuilder(ldclient.get())
builder.read(lambda _: Result.success("read old"), lambda _: Result.success("read new"), lambda lhs, rhs: lhs == rhs)
builder.write(lambda _: Result.success("write old"), lambda _: Result.success("write new"))
builder.read_execution_order(ExecutionOrder.PARALLEL)
# could also use ExecutionOrder.SERIAL, ExecutionOrder.RANDOM
builder.track_latency(True) # defaults to True
builder.track_errors(True) # defaults to True
result = builder.build()

To learn more, read Migration configuration.

Reading and writing during the migration

As your migration proceeds, use the SDK's migrator to call the read and write methods you defined. The migrator determines the migration stage of the feature flag controlling the migration, and performs reads and writes to the old and new systems based on the migration stage.

Here's how:

from ldclient import Stage
context = Context.builder("context-key-123abc").build()
# this is the migration stage to use if the flag's migration stage
# is not available from LaunchDarkly
default_stage = Stage.OFF
migrator = builder.build()
# when you need to perform a read in your application
migrator.read(
'migration-flag-key-123abc',
context,
default_stage
)
# when you need to perform a write in your application
migrator.write(
'migration-flag-key-123abc',
context,
default_stage
)

To learn more, read Migrations.

During the migration, you can check the consistency, errors, and latency as you manage your migration. This information is available in the "Migration insights" section of the flag's Targeting tab. To learn more, read Migration flags.

Understanding what was removed

Version 9.0 removes the ability to create users. Version 8 of the Python SDK replaced users with contexts. Starting in version 9, you can only create contexts.

Additionally, in version 8 of the Python SDK, some Context methods took either a Context or a dict. In version 9, these methods only accept a Context.

Here's how to construct a basic context, as compared with constructing a user:

user = {"key": "user-key-123abc"}

And here's how to evaluate a flag using a context:

flag_value = client.variation("flag-key-123abc", context, false)

To learn more about replacing users with contexts, read the Python SDK 7.x to 8.0 migration guide and Best practices for upgrading users to contexts.

For a complete list of removed and deprecated options, read the 9.0.0 Release Notes.