* [doris-1008] support backup and restore directly to cloud storage via aws s3 protocol * Internal][S3DirectAccess] Support backup,restore,load,export directlyconnect to s3 1. Support load and export data from/to s3 directly. 2. Add a config to auto convert broker access to s3 acces when available Change-Id: Iac96d4b3670776708bc96a119ff491db8cb4cde7 (cherry picked from commit 2f03832ca52221cc7436069b96c45c48c4bc7201) * [Internal][S3DirectAccess] File path glob compatible with broker Change-Id: Ie55e07a547aa22c6fa8d432ca926216c10384e68 (cherry picked from commit d4fb25544c0dc06d23e1ada571ec3f8edd4ba56f) * [internal] [doris-1008] fix log4j class not found Change-Id: I468176aca0d821383c74ee658d461aba9e7d5be3 (cherry picked from commit 029adaa9d6ded8503acbd6644c1519456f3db232) * add poms Co-authored-by: yangzhengguo01 <yangzhengguo01@baidu.com>
198 lines
7.9 KiB
C++
198 lines
7.9 KiB
C++
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
#include "util/s3_storage_backend.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
#include <aws/core/Aws.h>
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <boost/uuid/uuid.hpp>
|
|
#include <boost/uuid/uuid_generators.hpp>
|
|
#include <boost/uuid/uuid_io.hpp>
|
|
#include <fstream>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "util/file_utils.h"
|
|
#include "util/storage_backend.h"
|
|
|
|
namespace doris {
|
|
static const std::string AK = "AK";
|
|
static const std::string SK = "SK";
|
|
static const std::string ENDPOINT = "http://s3.bj.bcebos.com";
|
|
static const std::string REGION = "bj";
|
|
static const std::string BUCKET = "s3://yang-repo/";
|
|
class S3StorageBackendTest : public testing::Test {
|
|
public:
|
|
S3StorageBackendTest()
|
|
: _aws_properties({{"AWS_ACCESS_KEY", AK},
|
|
{"AWS_SECRET_KEY", SK},
|
|
{"AWS_ENDPOINT", ENDPOINT},
|
|
{"AWS_REGION", "bj"}}) {
|
|
_s3.reset(new S3StorageBackend(_aws_properties));
|
|
_s3_base_path = BUCKET + "s3/" + gen_uuid();
|
|
}
|
|
virtual ~S3StorageBackendTest() {}
|
|
|
|
protected:
|
|
virtual void SetUp() {
|
|
_test_file = "/tmp/" + gen_uuid();
|
|
std::ofstream out(_test_file);
|
|
out << _content;
|
|
out.close();
|
|
}
|
|
virtual void TearDown() {
|
|
remove(_test_file.c_str());
|
|
_s3->rm(_s3_base_path);
|
|
}
|
|
std::string gen_uuid() {
|
|
auto id = boost::uuids::random_generator()();
|
|
return boost::lexical_cast<std::string>(id);
|
|
}
|
|
std::unique_ptr<S3StorageBackend> _s3;
|
|
std::map<std::string, std::string> _aws_properties;
|
|
std::string _test_file;
|
|
std::string _s3_base_path;
|
|
std::string _content =
|
|
"O wild West Wind, thou breath of Autumn's being\n"
|
|
"Thou, from whose unseen presence the leaves dead\n"
|
|
"Are driven, like ghosts from an enchanter fleeing,\n"
|
|
"Yellow, and black, and pale, and hectic red,\n"
|
|
"Pestilence-stricken multitudes:O thou\n"
|
|
"Who chariotest to their dark wintry bed\n"
|
|
"The winged seeds, where they lie cold and low,\n"
|
|
"Each like a corpse within its grave, until\n"
|
|
"Thine azure sister of the Spring shall blow\n"
|
|
"Her clarion o'er the dreaming earth, and fill\n"
|
|
"(Driving sweet buds like flocks to feed in air)\n"
|
|
"With living hues and odors plain and hill:\n"
|
|
"Wild Spirit, which art moving everywhere;\n"
|
|
"Destroyer and preserver; hear, oh, hear!";
|
|
};
|
|
|
|
TEST_F(S3StorageBackendTest, s3_upload) {
|
|
Status status = _s3->upload(_test_file, _s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string orig_md5sum;
|
|
FileUtils::md5sum(_test_file, &orig_md5sum);
|
|
status = _s3->download(_s3_base_path + "/Ode_to_the_West_Wind.txt", _test_file + ".download");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string download_md5sum;
|
|
FileUtils::md5sum(_test_file + ".download", &download_md5sum);
|
|
ASSERT_EQ(orig_md5sum, download_md5sum);
|
|
status = _s3->upload(_test_file + "_not_found", _s3_base_path + "/Ode_to_the_West_Wind1.txt");
|
|
ASSERT_FALSE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind1.txt");
|
|
ASSERT_TRUE(status.code() == TStatusCode::NOT_FOUND);
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_direct_upload) {
|
|
Status status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind.txt", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string orig_md5sum;
|
|
FileUtils::md5sum(_test_file, &orig_md5sum);
|
|
status = _s3->download(_s3_base_path + "/Ode_to_the_West_Wind.txt", _test_file + ".download");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string download_md5sum;
|
|
FileUtils::md5sum(_test_file + ".download", &download_md5sum);
|
|
ASSERT_EQ(orig_md5sum, download_md5sum);
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_download) {
|
|
Status status = _s3->upload(_test_file, _s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string orig_md5sum;
|
|
FileUtils::md5sum(_test_file, &orig_md5sum);
|
|
status = _s3->download(_s3_base_path + "/Ode_to_the_West_Wind.txt", _test_file + ".download");
|
|
ASSERT_TRUE(status.ok());
|
|
std::string download_md5sum;
|
|
FileUtils::md5sum(_test_file + ".download", &download_md5sum);
|
|
ASSERT_EQ(orig_md5sum, download_md5sum);
|
|
status = _s3->download(_s3_base_path + "/Ode_to_the_West_Wind.txt.not_found",
|
|
_test_file + ".download");
|
|
ASSERT_FALSE(status.ok());
|
|
status = _s3->download(_s3_base_path + "/Ode_to_the_West_Wind.txt.not_found",
|
|
"/not_permitted.download");
|
|
ASSERT_FALSE(status.ok());
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_rename) {
|
|
Status status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind.txt", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->rename(_s3_base_path + "/Ode_to_the_West_Wind.txt",
|
|
_s3_base_path + "/Ode_to_the_West_Wind.txt.new");
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.code() == TStatusCode::NOT_FOUND);
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt.new");
|
|
ASSERT_TRUE(status.ok());
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_list) {
|
|
Status status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind.md5", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind1.md5", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind2.md5", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
std::map<std::string, FileStat> files;
|
|
status = _s3->list(_s3_base_path, &files);
|
|
ASSERT_TRUE(status.ok());
|
|
ASSERT_TRUE(files.find("Ode_to_the_West_Wind") != files.end());
|
|
ASSERT_TRUE(files.find("Ode_to_the_West_Wind1") != files.end());
|
|
ASSERT_TRUE(files.find("Ode_to_the_West_Wind2") != files.end());
|
|
ASSERT_EQ(3, files.size());
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_rm) {
|
|
Status status = _s3->direct_upload(_s3_base_path + "/Ode_to_the_West_Wind.txt", _content);
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->rm(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/Ode_to_the_West_Wind.txt");
|
|
ASSERT_TRUE(status.code() == TStatusCode::NOT_FOUND);
|
|
}
|
|
|
|
TEST_F(S3StorageBackendTest, s3_mkdir) {
|
|
Status status = _s3->mkdir(_s3_base_path + "/dir");
|
|
ASSERT_TRUE(status.ok());
|
|
status = _s3->exist(_s3_base_path + "/dir");
|
|
ASSERT_TRUE(status.code() == TStatusCode::NOT_FOUND);
|
|
status = _s3->exist(_s3_base_path + "/dir/");
|
|
ASSERT_TRUE(status.ok());
|
|
}
|
|
|
|
} // end namespace doris
|
|
|
|
int main(int argc, char** argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
int ret = 0;
|
|
Aws::SDKOptions options;
|
|
Aws::InitAPI(options);
|
|
// ak sk is secret
|
|
// ret = RUN_ALL_TESTS();
|
|
Aws::ShutdownAPI(options);
|
|
return ret;
|
|
} |