Skip to content

Commit

Permalink
FEAT-modin-project#4706: Add Modin ClassLogger to PandasDataframePart…
Browse files Browse the repository at this point in the history
…itionManager (modin-project#4707)

Signed-off-by: Naren Krishna <naren@ponder.io>
  • Loading branch information
naren-ponder authored Jul 22, 2022
1 parent 98d3dbf commit 41e32e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/release_notes/release_notes-0.16.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Key Features and Updates
* PERF-#4288: Improve perf of `groupby.mean` for narrow data (#4591)
* PERF-#4325: Improve perf of multi-column assignment in `__setitem__` when no new column names are assigning (#4455)
* Benchmarking enhancements
*
* FEAT-#4706: Add Modin ClassLogger to PandasDataframePartitionManager (#4707)
* Refactor Codebase
* REFACTOR-#4530: Standardize access to physical data in partitions (#4563)
* REFACTOR-#4534: Replace logging meta class with class decorator (#4535)
Expand Down Expand Up @@ -75,3 +75,4 @@ Contributors
@noloerino
@devin-petersohn
@YarShev
@naren-ponder
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from modin.core.storage_formats.pandas.utils import compute_chunksize
from modin.core.dataframe.pandas.utils import concatenate
from modin.config import NPartitions, ProgressBar, BenchmarkMode, Engine, StorageFormat
from modin.logging import ClassLogger

import os

Expand Down Expand Up @@ -78,7 +79,7 @@ def wait(cls, *args, **kwargs):
return func


class PandasDataframePartitionManager(ABC):
class PandasDataframePartitionManager(ClassLogger, ABC):
"""
Base class for managing the dataframe data layout and operators across the distribution of partitions.
Expand Down

0 comments on commit 41e32e9

Please sign in to comment.