Skip to content

Commit

Permalink
Merge branch 'master' into unified-iceberg
Browse files Browse the repository at this point in the history
  • Loading branch information
baiyangtx committed Dec 14, 2023
2 parents ad9adb7 + 62ea8d2 commit 127b235
Show file tree
Hide file tree
Showing 77 changed files with 927 additions and 490 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
package com.netease.arctic.ams.api;

public class PropertyNames {
public class OptimizerProperties {

// Resource properties
public static final String RESOURCE_ID = "resource-id";
public static final String EXPORT_PROPERTY_PREFIX = "export.";

public static final String AMS_OPTIMIZER_URI = "ams-optimizing-uri";
public static final String AMS_HOME = "ams-home";

// Resource container properties
public static final String EXPORT_PROPERTY_PREFIX = "export.";

// Resource group properties
public static final String OPTIMIZER_EXECUTION_PARALLEL = "execution-parallel";
public static final String OPTIMIZER_MEMORY_SIZE = "memory-size";
public static final String OPTIMIZER_GROUP_NAME = "group-name";
Expand All @@ -15,4 +19,6 @@ public class PropertyNames {
public static final boolean OPTIMIZER_EXTEND_DISK_STORAGE_DEFAULT = false;
public static final String OPTIMIZER_DISK_STORAGE_PATH = "disk-storage-path";
public static final String OPTIMIZER_MEMORY_STORAGE_SIZE = "memory-storage-size";
public static final String MAX_INPUT_FILE_SIZE_PER_THREAD = "max-input-file-size-per-thread";
public static final Long MAX_INPUT_FILE_SIZE_PER_THREAD_DEFAULT = 512 * 1024 * 1024L; // 512MB
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,8 @@ public class CatalogMetaProperties {
// Deprecated from version v0.4.0, use KEY_WAREHOUSE
@Deprecated public static final String KEY_WAREHOUSE_DIR = "warehouse.dir";
public static final String KEY_WAREHOUSE = "warehouse";
/**
* @deprecated since 0.6.0, will be removed in 0.7.0; use {@link
* CatalogMetaProperties#KEY_TABLE_FILTER} instead.
*/
@Deprecated
public static final String KEY_DATABASE_FILTER_REGULAR_EXPRESSION =
"database.filter-regular-expression";

public static final String KEY_DATABASE_FILTER = "database-filter";

public static final String KEY_TABLE_FILTER = "table-filter";

Expand Down
3 changes: 2 additions & 1 deletion ams/dashboard/src/components/tables-sub-menu/TablesMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ export default defineComponent({
}))
if (state.databaseList.length && !isSearch) {
const index = state.databaseList.findIndex(ele => ele.id === storageCataDBTable.database)
state.database = index > -1 ? storageCataDBTable.database : (route.query?.db)?.toString() || state.databaseList[0].id || ''
// ISSUE 2413: If the current catalog is not the one in the query, the first db is selected by default.
state.database = index > -1 ? storageCataDBTable.database : state.curCatalog === (route.query?.catalog)?.toString() ? ((route.query?.db)?.toString() || state.databaseList[0].id || '') : state.databaseList[0].id || ''
getAllTableList()
}
}).finally(() => {
Expand Down
7 changes: 6 additions & 1 deletion ams/dashboard/src/language/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export default {
filterPlaceholder: 'Filter {inputPh}',
basicInformation: 'Basic Information',
partition: 'Partition',
taskId: 'Task ID',
fileCount: 'File Count',
fsn: 'FSN',
commitTime: 'Commit Time',
Expand Down Expand Up @@ -99,6 +100,9 @@ export default {
optimizingStatus: 'Optimizing Status',
optimzerGroup: 'Optimizer Group',
allGroups: 'All Groups',
retry: 'Retry',
costTime: 'Cost Time',
thread: 'Thread',
resourceOccupation: 'Resource Occupation',
core: 'Core',
scaleOut: 'Scale-Out',
Expand Down Expand Up @@ -129,6 +133,7 @@ export default {
ready: 'Ready',
running: 'Running',
cancel: 'Cancel',
cancelProcess: 'Cancel Process',
finish: 'Finish',
fail: 'Fail',
loading: 'Loading',
Expand Down Expand Up @@ -179,7 +184,7 @@ export default {
cannotDeleteGroupModalTitle: "Can't remove this group.",
cannotDeleteGroupModalContent: 'This group has been used.',
deleteGroupModalTitle: 'Remove this group',
processId: 'Process Id',
processId: 'Process ID',
tasks: 'Tasks',
recordChartTitle: 'Table record count',
fileChartTitle: 'Table file count',
Expand Down

This file was deleted.

Loading

0 comments on commit 127b235

Please sign in to comment.