OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TableArchiver.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <string>
20 
21 #include "Catalog/Catalog.h"
22 #include "Catalog/SessionInfo.h"
23 
25  std::string s3_access_key;
26  std::string s3_secret_key;
27  std::string s3_session_token;
28  std::string s3_region;
29  std::string s3_endpoint;
30 };
31 
33  public:
35 
36  void dumpTable(const TableDescriptor* td,
37  const std::string& archive_path,
38  const std::string& compression);
39 
40  void restoreTable(const Catalog_Namespace::SessionInfo& session,
41  const std::string& table_name,
42  const std::string& archive_path,
43  const std::string& compression,
44  const TableArchiverS3Options& s3_options);
45 
46  private:
47  void restoreTable(const Catalog_Namespace::SessionInfo& session,
48  const TableDescriptor* td,
49  const std::string& archive_path,
50  const std::string& compression);
51 
53 };
std::string s3_secret_key
Definition: TableArchiver.h:26
std::string cat(Ts &&...args)
class for a per-database catalog. also includes metadata for the current database and the current use...
Definition: Catalog.h:143
This file contains the class specification and related data structures for Catalog.
TableArchiver(Catalog_Namespace::Catalog *cat)
Definition: TableArchiver.h:34
std::string s3_session_token
Definition: TableArchiver.h:27
std::string s3_access_key
Definition: TableArchiver.h:25
void restoreTable(const Catalog_Namespace::SessionInfo &session, const std::string &table_name, const std::string &archive_path, const std::string &compression, const TableArchiverS3Options &s3_options)
void dumpTable(const TableDescriptor *td, const std::string &archive_path, const std::string &compression)
Catalog_Namespace::Catalog * cat_
Definition: TableArchiver.h:52