Table of Contents

Class ParquetConnectorConfiguration

Namespace
Datafication.Connectors.ParquetConnector
Assembly
Datafication.ParquetConnector.dll

Represents the configuration for connecting to a Parquet data source.

public class ParquetConnectorConfiguration : IDataConnectorConfiguration
Inheritance
object
ParquetConnectorConfiguration
Implements

Remarks

This configuration contains settings and parameters necessary to establish a connection and retrieve data from a Parquet source.

Constructors

ParquetConnectorConfiguration()

public ParquetConnectorConfiguration()

Properties

ErrorHandler

Gets or sets the error handling action to be invoked when an exception occurs.

public Action<Exception>? ErrorHandler { get; set; }

Property Value

Action<Exception>

Remarks

This property allows the user to define a custom error-handling mechanism, such as logging or notifications, when processing data from the Parquet source.

Id

Gets or sets the unique identifier for this connector configuration.

public string Id { get; set; }

Property Value

string

Remarks

This identifier can be used to distinguish between different configurations or instances of the Parquet connector.

Source

Gets or sets the URI of the Parquet data source.

public Uri Source { get; set; }

Property Value

Uri

Remarks

This property specifies the location of the Parquet data source, which can be a local file, a network location, or a web endpoint.