uranusjr commented on code in PR #34729:
URL: https://github.com/apache/airflow/pull/34729#discussion_r1363053865


##########
airflow/io/__init__.py:
##########
@@ -0,0 +1,270 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+"""Base FileIO classes for implementing reading and writing table files.
+
+The FileIO abstraction includes a subset of full filesystem implementations. 
Specifically,
+Iceberg needs to read or write a file at a given location (as a seekable 
stream), as well
+as check if a file exists. An implementation of the FileIO abstract base class 
is responsible
+for returning an InputFile instance, an OutputFile instance, and deleting a 
file given
+its location.
+
+Ported from Apache Iceberg.
+"""
+from __future__ import annotations
+
+import importlib
+import logging
+from abc import ABC, abstractmethod
+from io import SEEK_SET
+from types import TracebackType
+from typing import (
+    Dict,
+    Optional,
+    Protocol,
+    runtime_checkable,
+)
+
+log = logging.getLogger(__name__)
+
+HDFS_HOST = "hdfs.host"
+HDFS_PORT = "hdfs.port"
+HDFS_USER = "hdfs.user"
+HDFS_KERB_TICKET = "hdfs.kerberos_ticket"
+
+TOKEN = "token"
+
+Properties = Dict[str, Optional[str]]
+
+
+@runtime_checkable
+class InputStream(Protocol):

Review Comment:
   How is this different from inheriting from ABC?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to