Skip to content

Commit

Permalink
[#4964] web(ui): Support Hudi catalog on the Web
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraXia123 committed Oct 17, 2024
1 parent 075a851 commit a92e022
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/web/src/app/metalakes/metalake/MetalakeTree.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ const MetalakeTree = props => {
return 'custom-icons-doris'
case 'lakehouse-paimon':
return 'custom-icons-paimon'
case 'lakehouse-hudi':
return 'custom-icons-hudi'
default:
return 'bx:book'
}
Expand Down
5 changes: 5 additions & 0 deletions web/web/src/lib/icons/iconify-icons.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions web/web/src/lib/icons/svg/hudi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions web/web/src/lib/utils/initial.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,5 +274,24 @@ export const providers = [
hide: 'simple'
}
]
},
{
label: 'Apache Hudi',
value: 'lakehouse-hudi',
defaultProps: [
{
key: 'catalog-backend',
value: 'hms',
defaultValue: 'hms',
required: true,
description: 'Apache Hudi catalog type choose properties'
},
{
key: 'uri',
value: '',
required: true,
description: 'Apache Hudi catalog uri config'
}
]
}
]

0 comments on commit a92e022

Please sign in to comment.