Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 2.06 KB

File metadata and controls

35 lines (19 loc) · 2.06 KB
graph LR
    Engine["Engine"]
    BaseDataFrame["BaseDataFrame"]
    Engine -- "operates on" --> BaseDataFrame
    BaseDataFrame -- "depends on" --> Engine
Loading

CodeBoardingDemoContact

Details

The Engine Abstraction Layer subsystem is primarily defined by the optimus/engines/base/engine.py and optimus/engines/base/basedataframe.py files. These files contain the core abstract interfaces that enable Optimus to operate independently of the underlying data processing engine.

Engine

Defines the abstract interface for all Optimus data processing engines. It acts as a factory and manager for concrete engine instances (e.g., Pandas, Dask, cuDF), ensuring that the correct engine implementation is used for operations. This component is fundamental for achieving engine agnosticism by providing a standardized way to interact with different computational backends.

Related Classes/Methods:

BaseDataFrame

Provides a comprehensive, engine-agnostic API for DataFrame manipulations. This class serves as the core abstraction for all data operations, allowing users to interact with data without needing to know the specific underlying engine. It encapsulates common DataFrame operations, making the user experience consistent across various engines.

Related Classes/Methods: