forked from raystack/optimus
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add resource management support for maxcompute (#282)
* feat: add initial resource mapping for maxcompute table * feat: improve validation, add table spec * tests: add test for table_spec and properties * feat: add code to create table on maxcompute * feat: initial setup of maxcompute store * feat: add maxcompute client and register maxcompute store * fix: change table handler initialization parameter type * fix: fix error on missing partition * fix: fix parameter type interface and handling error creation properly * fix: change partition column handling * test: add test for maxcompute client and table implementation * feat: implement checking existing table schema * chore: sort imports # Conflicts: # ext/store/maxcompute/maxcompute.go # ext/store/maxcompute/table.go # ext/store/maxcompute/table_test.go * feat: add support for views in maxcompute * feat: connect support for views * feat: implement standard table updation and improve view table * feat: add clustering support for table creation and update view * feat: implement alter table column with json type * test: add cluster table and view test * feat: implement schema format temporary for resource urn * chore: fix lint errors * chore: restructure file * chore: update golangci-lint action * feat: incorporate version 2 changes for maxcompute * update name to be used in create and update * fix: fix failure for decode * fix test and list issues * fix: handle name for view updation * test: fix the error on maxcompute test handle form * test: fix the error on maxcompute view handle form mock --------- Co-authored-by: Frederick Wijayadi Susilo <[email protected]> Co-authored-by: Frederick Wijayadi Susilo <[email protected]>
- Loading branch information
1 parent
500fd0d
commit b6ead53
Showing
54 changed files
with
3,234 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ lint: | |
|
||
install: ## install required dependencies | ||
@echo "> installing dependencies" | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2 | ||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0 | ||
go install google.golang.org/protobuf/cmd/[email protected] | ||
go install github.com/bufbuild/buf/cmd/[email protected] | ||
go install google.golang.org/grpc/cmd/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.