Doris 3.0.7 disaggregate cluster BE node encountered AWSXmlClient404 error #61779
Replies: 1 comment
|
To resolve the Recommended Storage Vault ConfigurationIf you are configuring the vault via SQL, use the following template. Note the CREATE STORAGE VAULT IF NOT EXISTS minio_vault
PROPERTIES (
"type" = "S3",
"s3.endpoint" = "http://minio-internal-service:9000",
"s3.region" = "us-east-1",
"s3.access_key" = "your_access_key",
"s3.secret_key" = "your_secret_key",
"s3.root_path" = "doris_data",
"s3.bucket" = "my-bucket",
"s3.use_path_style" = "true" -- Required for MinIO
);
-- Set as default vault for the disaggregated cluster
SET minio_vault AS DEFAULT STORAGE VAULT;Why this error occursThe
Important Verify that the Kubernetes nodes hosting your BE pods and your MinIO instance are all synchronized via NTP. A discrepancy of more than a few minutes will cause the Troubleshooting Steps
Are you seeing this error during initial cluster startup, or does it happen during specific query operations? |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
env:
the be pod log:
All reactions