Skip to content

Commit

Permalink
Merge branch 'master' into 0.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoujinsong committed Dec 9, 2022
2 parents 5cbb1b8 + 244c667 commit 21091dd
Show file tree
Hide file tree
Showing 134 changed files with 2,211 additions and 636 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Arctic is a LakeHouse management system under open architecture, which on top of data lake open formats provides more optimizations for streaming and upsert scenarios, as well as a set of pluggable self-optimizing mechanisms and management services. Using Arctic could help various data platforms, tools and products build out-of-the-box, streaming and batch unified LakeHouses quickly.

## What is arctic
## What is Arctic

Currently, Arctic is a LakeHouse management system on top of iceberg format. Benefit from the thriving ecology of Apache Iceberg, Arctic could be used on kinds of data lakes on premise or clouds with varities of engines. Several concepts should be known before your deeper steps:

Expand Down
2 changes: 2 additions & 0 deletions ams/ams-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

<artifactId>arctic-ams-api</artifactId>
<packaging>jar</packaging>
<name>Arctic Project AMS API</name>
<url>https://arctic.netease.com</url>

<properties>
<checkstyle.skip>true</checkstyle.skip>
Expand Down
2 changes: 2 additions & 0 deletions ams/ams-dashboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

<artifactId>arctic-ams-dashboard</artifactId>
<packaging>jar</packaging>
<name>Arctic Project AMS Dashboard</name>
<url>https://arctic.netease.com</url>


<properties>
Expand Down
12 changes: 10 additions & 2 deletions ams/ams-dashboard/src/components/Sidebar.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div :class="{'side-bar-collapsed': collapsed}" class="side-bar">
<div :class="{'logo-collapsed': collapsed}" @mouseenter="toggleTablesMenu(false)" class="logo g-flex-ac">
<div :class="{'logo-collapsed': collapsed}" @mouseenter="toggleTablesMenu(false)" @click="viewIntroduce" class="logo g-flex-ac">
<img src="../assets/images/logo.svg" class="logo-img" alt="">
<img v-show="!collapsed" src="../assets/images/arctic-dashboard.svg" class="arctic-name" alt="">
</div>
Expand Down Expand Up @@ -155,6 +155,12 @@ export default defineComponent({
store.updateTablesMenu(flag)
}
const viewIntroduce = () => {
router.push({
path: '/introduce'
})
}
return {
...toRefs(state),
hasToken,
Expand All @@ -164,7 +170,8 @@ export default defineComponent({
mouseenter,
store,
toggleTablesMenu,
goCreatePage
goCreatePage,
viewIntroduce
}
}
})
Expand Down Expand Up @@ -217,6 +224,7 @@ export default defineComponent({
padding: 12px 0 12px 16px;
overflow: hidden;
background-color: #001529;
cursor: pointer;
}
.logo-img {
width: 32px;
Expand Down
2 changes: 1 addition & 1 deletion ams/ams-dashboard/src/language/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default {
release: 'Release',
optimizeStatus: 'Optimize Status',
fileSize: 'File Size',
quotaOccupation: 'Quota Occupation',
occupation: 'Occupation',
optimizerGroup: 'Optimizer Group',
resourceAllocation: 'Resource Allocation',
resourceGroup: 'Resource Group',
Expand Down

This file was deleted.

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

This file was deleted.

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

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

Loading

0 comments on commit 21091dd

Please sign in to comment.