Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(datasource): supports creating and testing OSS data sources #3879

Open
wants to merge 34 commits into
base: dev/4.3.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1806eda
supports create and test file system datasource
guowl3 Nov 19, 2024
6faed2d
add i18
guowl3 Nov 20, 2024
87bc445
fix access denied
guowl3 Nov 20, 2024
5913e08
fix access denied
guowl3 Nov 20, 2024
a3d34fa
fix access denied
guowl3 Nov 20, 2024
b4fc647
fix delete obj failed
guowl3 Nov 20, 2024
ee4b526
support sync database
guowl3 Nov 28, 2024
5139b64
set default schema
guowl3 Dec 5, 2024
088dc8e
fix
guowl3 Dec 6, 2024
e3862df
support archive to file system
guowl3 Dec 16, 2024
ada7ab1
upgrade hadoop-common from 3.3.4 to 3.3.6
guowl3 Dec 17, 2024
2824cf5
bugfix
guowl3 Dec 17, 2024
df72a73
bugfix
guowl3 Dec 17, 2024
bf91940
Merge remote-tracking branch 'origin/dev/4.3.x' into tianke_433_feat_…
guowl3 Dec 18, 2024
a9f02c2
bugfix
guowl3 Dec 18, 2024
badc002
bugfix
guowl3 Dec 18, 2024
5c5b727
Merge branch 'dev/4.3.x' into tianke_433_feat_support_fs
guowl3 Dec 23, 2024
5a1efb6
pull mode
guowl3 Dec 23, 2024
1014e84
revert
guowl3 Dec 23, 2024
1ae8572
cannot sync oss datasource
guowl3 Dec 30, 2024
461393a
code format
guowl3 Dec 30, 2024
2b5f988
code format
guowl3 Dec 30, 2024
40c0b85
opt dlm task implements
guowl3 Dec 30, 2024
1ee57f0
fix npe
guowl3 Dec 31, 2024
e644922
store partition range in disk
guowl3 Jan 2, 2025
175c06c
bugfix
guowl3 Jan 2, 2025
0e0f186
code format
guowl3 Jan 2, 2025
a50bfc2
opt error message
guowl3 Jan 6, 2025
65b2917
opt task log
guowl3 Jan 6, 2025
442b364
create table for all type
guowl3 Jan 6, 2025
f6e5f2c
enable save point
guowl3 Jan 6, 2025
e2848b5
opt log info
guowl3 Jan 6, 2025
e10cb0a
bugfix
guowl3 Jan 7, 2025
244b52c
bugfix
guowl3 Jan 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code format
  • Loading branch information
guowl3 committed Dec 30, 2024
commit 2b5f98855b091812f562a16f66f9fc28a73f181f
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import com.oceanbase.odc.metadb.connection.DatabaseRepository;
import com.oceanbase.odc.service.connection.database.model.DatabaseSyncStatus;
import com.oceanbase.odc.service.connection.database.model.DatabaseType;
import com.oceanbase.odc.service.connection.event.UpdateDatasourceEvent;
import com.oceanbase.odc.service.connection.event.UpsertDatasourceEvent;
import com.oceanbase.odc.service.connection.model.ConnectionConfig;
import com.oceanbase.odc.service.db.schema.model.DBObjectSyncStatus;

Expand All @@ -42,13 +42,13 @@
*/
@Slf4j
@Component
public class UpdateDatasourceListener extends AbstractEventListener<UpdateDatasourceEvent> {
public class UpdateDatasourceListener extends AbstractEventListener<UpsertDatasourceEvent> {

@Autowired
private DatabaseRepository databaseRepository;

@Override
public void onEvent(UpdateDatasourceEvent event) {
public void onEvent(UpsertDatasourceEvent event) {

ConnectionConfig connectionConfig = event.getConnectionConfig();
if (connectionConfig.getDialectType() != DialectType.FILE_SYSTEM) {
Expand Down
Loading