[
https://issues.apache.org/jira/browse/HUDI-2151?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17380173#comment-17380173
]
Vinoth Chandar commented on HUDI-2151:
--------------------------------------
Should this be spillable map?
{code:java}
public static final ConfigProperty<FileSystemViewStorageType>
FILESYSTEM_VIEW_STORAGE_TYPE = ConfigProperty
.key("hoodie.filesystem.view.type")
.defaultValue(FileSystemViewStorageType.MEMORY)
.withDocumentation("File system view provides APIs for viewing the files on
the underlying lake storage, "
+ " as file groups and file slices. This config controls how such a view is
held. Options include "
+
Arrays.stream(FileSystemViewStorageType.values()).map(Enum::name).collect(Collectors.joining(","))
+ " which provide different trade offs for memory usage and API request
performance.");{code}
> Make performant out-of-box configs
> ----------------------------------
>
> Key: HUDI-2151
> URL: https://issues.apache.org/jira/browse/HUDI-2151
> Project: Apache Hudi
> Issue Type: Sub-task
> Components: Code Cleanup, Docs
> Reporter: Vinoth Chandar
> Assignee: Vinoth Chandar
> Priority: Major
>
> We have quite a few configs which deliver better performance or usability,
> but guarded by flags.
> This is to identify them, change them, test (functionally, perf) and make
> them default
>
> Need to ensure we also capture all the backwards compatibility issues that
> can arise
--
This message was sent by Atlassian Jira
(v8.3.4#803005)