Skip to content

Commit

Permalink
no-op
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 629150061
  • Loading branch information
XinranTang authored and tfx-copybara committed Apr 30, 2024
1 parent 916eb7e commit d383a47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tfx/orchestration/experimental/core/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def get_orchestration_options(
def get_base_dir(self) -> Optional[str]:
"""Returns the base directory for the pipeline."""


@abc.abstractmethod
def max_mlmd_str_value_length(self) -> Optional[int]:
"""Returns max size of a string value in MLMD db, `None` if unlimited."""
Expand Down Expand Up @@ -111,6 +112,7 @@ def get_orchestration_options(
def get_base_dir(self) -> Optional[str]:
return None


def max_mlmd_str_value_length(self) -> Optional[int]:
return None

Expand Down
1 change: 1 addition & 0 deletions tfx/orchestration/experimental/core/env_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def get_orchestration_options(self, pipeline):
def get_base_dir(self):
raise NotImplementedError()


def max_mlmd_str_value_length(self):
raise NotImplementedError()

Expand Down

0 comments on commit d383a47

Please sign in to comment.