Skip to main content
← Back to index page

1.0.17

  • Fix bug that blocked use of get_features_for_events on Feature Views and Feature Services with compaction_enabled=True and with_join_key_map

  • Adding a configuration isolate_function_serialization that controls function deserialization behavior during materialization.

    • Default Behavior (isolate_function_serialization: False): Functions deserialize into the the same scope, which can cause variable collisions.

    • With isolate_function_serialization=True: Functions will be isolated from each other during derialization, preventing variable collision.

    To activate:

    1. Update the tecton_materialization_runtime versions in the repo.yaml to be >=1.0.17
    2. Add the following to the repo.yaml file:
    repo_options:
    isolate_function_deserialization: True