This is an automated email from the ASF dual-hosted git repository.
sivabalan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git.
from 04449f3 [HUDI-743]: Remove FileIOUtils.close() (#1461)
add ac73bdc [HUDI-430] Adding InlineFileSystem to support embedding any
file format as an InlineFile (#1176)
No new revisions were added by this update.
Summary of changes:
hudi-client/pom.xml | 1 +
hudi-common/pom.xml | 15 +
.../hudi/common/inline/fs/InLineFSUtils.java | 98 ++++++
.../hudi/common/inline/fs/InLineFileSystem.java | 133 ++++++++
.../common/inline/fs/InLineFsDataInputStream.java | 114 +++++++
.../hudi/common/inline/fs/InMemoryFileSystem.java | 138 ++++++++
.../hudi/common/inline/fs/FileSystemTestUtils.java | 66 ++++
.../hudi/common/inline/fs/TestHFileInLining.java | 241 ++++++++++++++
.../common/inline/fs/TestInLineFileSystem.java | 356 +++++++++++++++++++++
.../common/inline/fs/TestInMemoryFileSystem.java | 145 +++++++++
.../utilities/inline/fs/TestParquetInLining.java | 153 +++++++++
pom.xml | 7 -
12 files changed, 1460 insertions(+), 7 deletions(-)
create mode 100644
hudi-common/src/main/java/org/apache/hudi/common/inline/fs/InLineFSUtils.java
create mode 100644
hudi-common/src/main/java/org/apache/hudi/common/inline/fs/InLineFileSystem.java
create mode 100644
hudi-common/src/main/java/org/apache/hudi/common/inline/fs/InLineFsDataInputStream.java
create mode 100644
hudi-common/src/main/java/org/apache/hudi/common/inline/fs/InMemoryFileSystem.java
create mode 100644
hudi-common/src/test/java/org/apache/hudi/common/inline/fs/FileSystemTestUtils.java
create mode 100644
hudi-common/src/test/java/org/apache/hudi/common/inline/fs/TestHFileInLining.java
create mode 100644
hudi-common/src/test/java/org/apache/hudi/common/inline/fs/TestInLineFileSystem.java
create mode 100644
hudi-common/src/test/java/org/apache/hudi/common/inline/fs/TestInMemoryFileSystem.java
create mode 100644
hudi-utilities/src/test/java/org/apache/hudi/utilities/inline/fs/TestParquetInLining.java