Skip to content

Commit

Permalink
MDEV-7867: Add binlog header to GRA_.log file
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirbhay Choubey committed Apr 1, 2015
1 parent cbc5157 commit 575dd77
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 10 deletions.
10 changes: 4 additions & 6 deletions sql/wsrep_applier.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */

#include "wsrep_priv.h"
#include "wsrep_binlog.h" // wsrep_dump_rbr_buf()
#include "wsrep_binlog.h"

#include "log_event.h" // EVENT_LEN_OFFSET, etc.
#include "wsrep_applier.h"
Expand Down Expand Up @@ -62,8 +62,7 @@ static Log_event* wsrep_read_log_event(
#include "rpl_rli.h" // class Relay_log_info;
#include "sql_base.h" // close_temporary_table()

static inline void
wsrep_set_apply_format(THD* thd, Format_description_log_event* ev)
void wsrep_set_apply_format(THD* thd, Format_description_log_event* ev)
{
if (thd->wsrep_apply_format)
{
Expand All @@ -72,8 +71,7 @@ wsrep_set_apply_format(THD* thd, Format_description_log_event* ev)
thd->wsrep_apply_format= ev;
}

static inline Format_description_log_event*
wsrep_get_apply_format(THD* thd)
Format_description_log_event* wsrep_get_apply_format(THD* thd)
{
if (thd->wsrep_apply_format)
return (Format_description_log_event*) thd->wsrep_apply_format;
Expand Down Expand Up @@ -260,7 +258,7 @@ wsrep_cb_status_t wsrep_apply_cb(void* const ctx,

if (WSREP_CB_SUCCESS != rcode)
{
wsrep_dump_rbr_buf(thd, buf, buf_len);
wsrep_dump_rbr_buf_with_header(thd, buf, buf_len);
}

TABLE *tmp;
Expand Down
3 changes: 3 additions & 0 deletions sql/wsrep_applier.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@

#include <sys/types.h>

void wsrep_set_apply_format(THD* thd, Format_description_log_event* ev);
Format_description_log_event* wsrep_get_apply_format(THD* thd);

/* wsrep callback prototypes */

wsrep_cb_status_t wsrep_apply_cb(void *ctx,
Expand Down
62 changes: 61 additions & 1 deletion sql/wsrep_binlog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#include "wsrep_binlog.h"
#include "wsrep_priv.h"
#include "log.h"
#include "log_event.h"
#include "wsrep_applier.h"

extern handlerton *binlog_hton;
/*
Expand Down Expand Up @@ -212,7 +214,10 @@ static int wsrep_write_cache_once(wsrep_t* const wsrep,
WSREP_ERROR("failed to reinitialize io-cache");
}

if (unlikely(WSREP_OK != err)) wsrep_dump_rbr_buf(thd, buf, used);
if (unlikely(WSREP_OK != err))
{
wsrep_dump_rbr_buf_with_header(thd, buf, used);
}

my_free(heap_buf);
return err;
Expand Down Expand Up @@ -352,6 +357,7 @@ int wsrep_binlog_savepoint_rollback(THD *thd, void *sv)
return rcode;
}

#if 0
void wsrep_dump_rbr_direct(THD* thd, IO_CACHE* cache)
{
char filename[PATH_MAX]= {0};
Expand Down Expand Up @@ -407,8 +413,62 @@ void wsrep_dump_rbr_direct(THD* thd, IO_CACHE* cache)
// close file
if (of) fclose(of);
}
#endif

void thd_binlog_flush_pending_rows_event(THD *thd, bool stmt_end)
{
thd->binlog_flush_pending_rows_event(stmt_end);
}

/* Dump replication buffer along with header to a file. */
void wsrep_dump_rbr_buf_with_header(THD *thd, const void *rbr_buf,
size_t buf_len)
{
char filename[PATH_MAX]= {0};
File file;
IO_CACHE cache;
Format_description_log_event *ev= wsrep_get_apply_format(thd);

int len= my_snprintf(filename, PATH_MAX, "%s/GRA_%ld_%lld_v2.log",
wsrep_data_home_dir, thd->thread_id,
(long long) wsrep_thd_trx_seqno(thd));

if (len >= PATH_MAX)
{
WSREP_ERROR("RBR dump path too long: %d, skipping dump.", len);
return;
}

if ((file= mysql_file_open(key_file_wsrep_gra_log, filename,
O_RDWR | O_CREAT | O_BINARY, MYF(MY_WME))) < 0)
{
WSREP_ERROR("Failed to open file '%s' : %d (%s)",
filename, errno, strerror(errno));
goto cleanup1;
}

if (init_io_cache(&cache, file, 0, WRITE_CACHE, 0, 0, MYF(MY_WME | MY_NABP)))
{
mysql_file_close(file, MYF(MY_WME));
goto cleanup2;
}

if (my_b_safe_write(&cache, BINLOG_MAGIC, BIN_LOG_HEADER_SIZE))
{
goto cleanup2;
}

if (ev->write(&cache) || my_b_write(&cache, rbr_buf, buf_len) ||
flush_io_cache(&cache))
{
WSREP_ERROR("Failed to write to '%s'.", filename);
goto cleanup2;
}

cleanup2:
end_io_cache(&cache);

cleanup1:
mysql_file_close(file, MYF(MY_WME));
}

7 changes: 4 additions & 3 deletions sql/wsrep_binlog.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ void wsrep_dump_rbr_buf(THD *thd, const void* rbr_buf, size_t buf_len);
/* Dump replication buffer to disk without intermediate buffer */
void wsrep_dump_rbr_direct(THD* thd, IO_CACHE* cache);

/* Dump replication buffer along with header to a file */
void wsrep_dump_rbr_buf_with_header(THD *thd, const void *rbr_buf,
size_t buf_len);

int wsrep_binlog_close_connection(THD* thd);
int wsrep_binlog_savepoint_set(THD *thd, void *sv);
int wsrep_binlog_savepoint_rollback(THD *thd, void *sv);

/* Dump replication buffer to disk without intermediate buffer */
void wsrep_dump_rbr_direct(THD* thd, IO_CACHE* cache);

#endif /* WSREP_BINLOG_H */
10 changes: 10 additions & 0 deletions sql/wsrep_mysqld.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ PSI_cond_key key_COND_wsrep_rollback,
key_COND_wsrep_replaying, key_COND_wsrep_ready, key_COND_wsrep_sst,
key_COND_wsrep_sst_init, key_COND_wsrep_sst_thread;

PSI_file_key key_file_wsrep_gra_log;

static PSI_mutex_info wsrep_mutexes[]=
{
{ &key_LOCK_wsrep_ready, "LOCK_wsrep_ready", PSI_FLAG_GLOBAL},
Expand All @@ -157,6 +159,12 @@ static PSI_cond_info wsrep_conds[]=
{ &key_COND_wsrep_rollback, "COND_wsrep_rollback", PSI_FLAG_GLOBAL},
{ &key_COND_wsrep_replaying, "COND_wsrep_replaying", PSI_FLAG_GLOBAL}
};

static PSI_file_info wsrep_files[]=
{
{ &key_file_wsrep_gra_log, "wsrep_gra_log", 0}
};

#else
#define mysql_mutex_register(X,Y,Z)
#define mysql_cond_register(X,Y,Z)
Expand Down Expand Up @@ -626,6 +634,8 @@ int wsrep_init()
mysql_mutex_init(key_LOCK_wsrep_desync, &LOCK_wsrep_desync, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_wsrep_config_state, &LOCK_wsrep_config_state, MY_MUTEX_INIT_FAST);

mysql_file_register("sql", wsrep_files, array_elements(wsrep_files));

wsrep_ready_set(FALSE);
assert(wsrep_provider);

Expand Down
2 changes: 2 additions & 0 deletions sql/wsrep_mysqld.h
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@ extern PSI_mutex_key key_LOCK_wsrep_replaying;
extern PSI_cond_key key_COND_wsrep_replaying;
extern PSI_mutex_key key_LOCK_wsrep_slave_threads;
extern PSI_mutex_key key_LOCK_wsrep_desync;

extern PSI_file_key key_file_wsrep_gra_log;
#endif /* HAVE_PSI_INTERFACE */
struct TABLE_LIST;
int wsrep_to_isolation_begin(THD *thd, char *db_, char *table_,
Expand Down

0 comments on commit 575dd77

Please sign in to comment.