mirror of
https://github.com/MariaDB/server.git
synced 2025-12-09 08:01:34 +03:00
MDEV-22088 S3 partitioning support
All ALTER PARTITION commands should now work on S3 tables except
REBUILD PARTITION
TRUNCATE PARTITION
REORGANIZE PARTITION
In addition, PARTIONED S3 TABLES can also be replicated.
This is achived by storing the partition tables .frm and .par file on S3
for partitioned shared (S3) tables.
The discovery methods are enchanced by allowing engines that supports
discovery to also support of the partitioned tables .frm and .par file
Things in more detail
- The .frm and .par files of partitioned tables are stored in S3 and kept
in sync.
- Added hton callback create_partitioning_metadata to inform handler
that metadata for a partitoned file has changed
- Added back handler::discover_check_version() to be able to check if
a table's or a part table's definition has changed.
- Added handler::check_if_updates_are_ignored(). Needed for partitioning.
- Renamed rebind() -> rebind_psi(), as it was before.
- Changed CHF_xxx hadnler flags to an enum
- Changed some checks from using table->file->ht to use
table->file->partition_ht() to get discovery to work with partitioning.
- If TABLE_SHARE::init_from_binary_frm_image() fails, ensure that we
don't leave any .frm or .par files around.
- Fixed that writefrm() doesn't leave unusable .frm files around
- Appended extension to path for writefrm() to be able to reuse to function
for creating .par files.
- Added DBUG_PUSH("") to a a few functions that caused a lot of not
critical tracing.
82 lines
2.4 KiB
C++
82 lines
2.4 KiB
C++
#ifndef HA_S3_INCLUDED
|
|
#define HA_S3_INCLUDED
|
|
/* Copyright (C) 2019 MariaDB Corppration AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the
|
|
Free Software Foundation, Inc.
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
|
|
*/
|
|
|
|
#include "ha_maria.h"
|
|
|
|
class ha_s3 :public ha_maria
|
|
{
|
|
enum alter_table_op
|
|
{ S3_NO_ALTER, S3_ALTER_TABLE, S3_ADD_PARTITION, S3_ADD_TMP_PARTITION };
|
|
alter_table_op in_alter_table;
|
|
S3_INFO *open_args;
|
|
|
|
public:
|
|
ha_s3(handlerton *hton, TABLE_SHARE * table_arg);
|
|
~ha_s3() {}
|
|
|
|
int create(const char *name, TABLE *table_arg, HA_CREATE_INFO *ha_create_info);
|
|
int open(const char *name, int mode, uint open_flags);
|
|
int write_row(const uchar *buf);
|
|
int update_row(const uchar * old_data, const uchar * new_data)
|
|
{
|
|
DBUG_ENTER("update_row");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int delete_row(const uchar * buf)
|
|
{
|
|
DBUG_ENTER("delete_row");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int check(THD * thd, HA_CHECK_OPT * check_opt)
|
|
{
|
|
DBUG_ENTER("delete_row");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int analyze(THD * thd, HA_CHECK_OPT * check_opt)
|
|
{
|
|
DBUG_ENTER("analyze");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int repair(THD * thd, HA_CHECK_OPT * check_opt)
|
|
{
|
|
DBUG_ENTER("repair");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int preload_keys(THD * thd, HA_CHECK_OPT * check_opt)
|
|
{
|
|
DBUG_ENTER("preload_keys");
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
}
|
|
int external_lock(THD * thd, int lock_type);
|
|
/*
|
|
drop_table() is only used for internal temporary tables,
|
|
not applicable for s3
|
|
*/
|
|
void drop_table(const char *name)
|
|
{
|
|
}
|
|
int delete_table(const char *name);
|
|
int rename_table(const char *from, const char *to);
|
|
int discover_check_version() override;
|
|
int rebind();
|
|
S3_INFO *s3_open_args() { return open_args; }
|
|
void register_handler(MARIA_HA *file);
|
|
};
|
|
#endif /* HA_S3_INCLUDED */
|