|
@@ -848,25 +848,6 @@ class Config:
|
|
|
The new job execution configuration.
|
|
|
"""
|
|
|
|
|
|
- @staticmethod
|
|
|
- def add_migration_function(
|
|
|
- target_version: str,
|
|
|
- config: Union[Section, str],
|
|
|
- migration_fct: Callable,
|
|
|
- **properties,
|
|
|
- ):
|
|
|
- """Add a migration function for a Configuration to migrate entities to the target version.
|
|
|
-
|
|
|
- Parameters:
|
|
|
- target_version (str): The production version that entities are migrated to.
|
|
|
- config (Union[Section, str]): The configuration or the `id` of the config that needs to migrate.
|
|
|
- migration_fct (Callable): Migration function that takes an entity as input and returns a new entity
|
|
|
- that is compatible with the target production version.
|
|
|
- **properties (Dict[str, Any]): A keyworded variable length list of additional arguments.
|
|
|
- Returns:
|
|
|
- `MigrationConfig^`: The Migration configuration.
|
|
|
- """
|
|
|
-
|
|
|
@staticmethod
|
|
|
def configure_core(
|
|
|
root_folder: Optional[str] = None,
|
|
@@ -898,7 +879,9 @@ class Config:
|
|
|
read_entity_retry (Optional[int]): Number of retries to read an entity from the repository
|
|
|
before return failure. The default value is 3.
|
|
|
mode (Optional[str]): Indicates the mode of the version management system.
|
|
|
- Possible values are *"development"*, *"experiment"*, or *"production"*.
|
|
|
+ Possible values are *"development"* or *"experiment"*. On Enterprise edition of Taipy,
|
|
|
+ *production* mode is also available. Please refer to the
|
|
|
+ [Versioning management](../../userman/versioning/index.md) documentation page for more details.
|
|
|
version_number (Optional[str]): The string identifier of the version.
|
|
|
In development mode, the version number is ignored.
|
|
|
force (Optional[bool]): If True, Taipy will override a version even if the configuration
|