Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[vtctldclient-codegen] Add support in codegen for streaming RPCs #9064

Merged
merged 3 commits into from
Oct 27, 2021

Conversation

ajm188
Copy link
Contributor

@ajm188 ajm188 commented Oct 22, 2021

Description

This PR finally pays down the TODO I left myself here:

// (TODO|@-amason): does not work for streaming rpcs

How exactly this works

The grpc-client case is simplest, because the streaming client code has the same shape as the unary case with a slightly different signature (the return value is an interface type instead of a pointer type like in the unary case). You can see an example of the code it generates here (which I am keeping as a draft until (1) I merge this one and (2) I have time to write tests for it).

In the local, in-process client case, things get significantly more complex. We need to munge the types a bit to produce something that both the client and server implementations can use transparently without realizing there's no actual grpc-core code being invoked beneath them. To do this, we introduce a new type, bidiStream which provides no-op implementations of both the grpc.ClientStream and grpc.ServerStream interfaces. A key detail here is that we know that the rpc implementations will never call these functions. As long as our servers only ever call stream.Send() and our clients only ever call stream.Recv(), this will work, but if we ever need to reach into other methods, we'll need to reevaluate this approach. bidiStream also provides some common fields that individual streaming rpcs will use as well as a private close method to handle the cleanup signaling.

Armed with our new type that looks like a ServerStream to the server implementation and a ClientStream to the client, we can then create a stream adapter struct for each streaming RPC and embed a *bidiStream in it. Each stream adapter type will also include a chan *T field for the actual message type sent over the stream for that RPC. We add Recv() (*T, error) and Send(*T) error) methods to complete the <RPCName>_Server and <RPCName>_Client interfaces, and then implement the client wrapper to do the following:

  1. create the stream adapter
  2. in a goroutine, invoke the underlying server method
    1. when it completes, close the stream with any error the server returned. if err == nil, stream.close will send io.EOF over the errch on a later call to Recv
  3. return the stream adapter back to the caller, who will call Recv in the standard "streaming client" pattern until error or io.EOF

To see a concrete example of this, see the backupStreamAdapter this generated.

Does the code work though?

Seems to! Trying this out on my backups PR:

grpcvtctldclient case
❯ vtctldclient --server ":15999" Backup zone1-0000000102
commerce/0 (zone1-0000000102): time:{seconds:1634856544 nanoseconds:707483000} file:"builtinbackupengine.go" line:141 value:"Hook: , Compress: true"
commerce/0 (zone1-0000000102): time:{seconds:1634856544 nanoseconds:709201000} file:"builtinbackupengine.go" line:151 value:"getting current replication status"
commerce/0 (zone1-0000000102): time:{seconds:1634856544 nanoseconds:784322000} file:"builtinbackupengine.go" line:192 value:"using replication position: d91fb872-32c0-11ec-a4c2-1f77f97c8111:1-28"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:828533000} file:"builtinbackupengine.go" line:287 value:"found 289 files to backup"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:828742000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/local_metadata.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:828789000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ibdata1"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:828834000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_buffer_pool"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:831119000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_logfile1"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:832556000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_logfile0"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:832563000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_worker_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:836666000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/local_metadata.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:837985000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/reparent_journal.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:840272000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/reparent_journal.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:841557000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/rwlock_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:843914000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/schema_migrations.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:845666000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:847615000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/schema_migrations.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:855323000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/shard_metadata.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:858439000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.CSM"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:868172000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.CSV"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:875946000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:876943000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:878110000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:882416000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:885974000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/shard_metadata.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:893299000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:894949000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:895921000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:896870000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:899610000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:902988000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:905988000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:907407000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/engine_cost.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:914910000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/engine_cost.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:923791000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:926752000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:927011000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:927794000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:928649000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:932796000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:933975000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:936280000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:936632000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:939714000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:941530000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:941832000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_leap_second.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:943430000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_leap_second.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:945212000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:947752000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_name.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:949326000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:954408000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:954537000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:957236000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition_type.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:957518000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:959243000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:959457000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:961518000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/accounts.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:961843000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/cond_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:963167000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:964341000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:967730000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:970890000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:970938000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:973841000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.CSM"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:974958000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.CSV"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:976363000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:976413000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/gtid_executed.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:979224000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/gtid_executed.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:979730000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_category.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:982851000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_category.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:985301000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_keyword.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:988507000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_relation.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:988516000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_keyword.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:991173000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_relation.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:993860000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:996937000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856548 nanoseconds:999081000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:1689000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/product.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:2331000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_account_connect_attrs.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:5598000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_connect_attrs.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:6387000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:7704000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_variables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:7789000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_actors.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:10597000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_instruments.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:10597000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_consumers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:12535000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:12878000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:14348000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:15668000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:15668000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_topic.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:19391000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_topic.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:21077000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_index_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:23938000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_objects.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:28026000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_timers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:32626000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:35310000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_index_stats.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:39458000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_table_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:42205000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_table_stats.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:46416000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:51826000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:56725000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:57850000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/plugin.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:59944000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/plugin.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:71638000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:80258000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:80692000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:80871000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:84976000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:85930000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:88645000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:88646000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:89894000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:90646000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_summary_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:91766000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:92399000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_account.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:94435000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:94444000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_host.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:94470000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_user.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:100330000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_handles.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:100330000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_io_waits_summary_by_index_usage.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:102575000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_io_waits_summary_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:103356000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_lock_waits_summary_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:103356000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/threads.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:106000000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/user_variables_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:106000000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/server_cost.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:106037000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/server_cost.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:107209000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/servers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:107209000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/servers.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:107249000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_master_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:109379000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_relay_log_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:109436000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_master_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:110265000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_relay_log_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:111843000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_worker_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:111851000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:112267000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:113797000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_digest.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:114655000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_program.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:114676000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:115743000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:116337000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/global_variables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:120262000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:120285000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:121530000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:121745000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:121791000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:123182000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/users.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:123832000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:123967000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_by_user_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:124149000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:126269000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:126306000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_statistics_with_buffer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:127086000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_tables_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:127913000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_unused_indexes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:128504000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/session.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:129738000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/session_ssl_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:130565000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statement_analysis.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:131732000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_redundant_indexes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:133073000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/performance_timers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:135834000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/hosts.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:135854000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/host_cache.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:137263000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_errors_or_warnings.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:137591000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:137596000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/variables_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:138067000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:139742000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:139863000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:139882000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:141012000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:141988000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:142290000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:142321000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:143430000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:143890000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:144153000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_buffer_stats_by_schema.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:144688000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:145236000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_runtimes_in_95th_percentile.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:145914000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:147056000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:147342000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_sorting.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:147698000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:150267000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_temp_tables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:150533000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:150698000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:151281000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:152188000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:154525000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:155592000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:155930000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:156972000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:157291000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_summary_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:157539000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_buffer_stats_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:157580000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:158648000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:158653000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_by_thread_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:158761000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:158823000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_file_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:160731000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:160730000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_file_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:161095000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_wait_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:162958000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:163904000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/metadata_locks.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:164847000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_wait_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:165785000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.TRG"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:166097000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/latest_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:167740000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:167751000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_host_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:167759000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_thread_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:169320000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_user_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:169319000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/mutex_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:169332000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:169742000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:171002000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:171656000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config_insert_set_user.TRN"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:171911000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:172211000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config_update_set_user.TRN"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:172397000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/global_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:172680000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:174346000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_buffer_stats_by_schema.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:174516000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:174898000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_buffer_stats_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:175059000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_global_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:176371000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:176550000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:177241000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_by_thread_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:178124000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_connection_configuration.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:178260000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/objects_summary_global_by_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:178452000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/prepared_statements_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:178693000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/ps_check_lost_instrumentation.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:179453000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_global_total.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:179548000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_configuration.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:179763000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_file_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:180432000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:181456000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/metrics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:181782000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/processlist.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:182751000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:182818000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status_by_coordinator.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:183475000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_auto_increment_columns.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:183816000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_index_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:184065000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_group_members.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:184189000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_file_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:186509000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:186680000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status_by_worker.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:186911000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_wait_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:188690000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_connection_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:188695000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_group_member_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:188852000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_wait_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:189957000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:190069000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_host_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:190151000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024latest_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:190521000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_thread_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:192356000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_user_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:194872000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_object_overview.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:194872000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024processlist.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:194874000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_global_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:194890000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_global_total.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:196401000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_digest_95th_percentile_by_avg_us.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:196533000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_digest_avg_latency_distribution.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:196601000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_schema_table_statistics_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:198177000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_flattened_keys.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:198353000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/version.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:199785000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_index_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:199987000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:200339000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:200841000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024wait_classes_global_by_avg_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:201136000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_runtimes_in_95th_percentile.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:201818000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_sorting.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:202367000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_temp_tables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:203785000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/wait_classes_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:203921000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:204075000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:204476000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_statistics_with_buffer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:205005000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_tables_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:205891000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024session.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:206991000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024wait_classes_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:207459000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:207999000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:209111000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:209395000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:209672000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statement_analysis.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:210151000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/wait_classes_global_by_avg_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:211025000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:211038000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:211032000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_errors_or_warnings.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:213273000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_by_user_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:213273000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:213550000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_by_host_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:215346000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/corder.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:215642000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:215790000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_by_host_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:216332000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/customer.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:217023000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/corder.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:217034000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/customer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856549 nanoseconds:217558000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/product.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634856551 nanoseconds:230651000} file:"builtinbackupengine.go" line:213 value:"resetting mysqld read-only to true"
commerce/0 (zone1-0000000102): time:{seconds:1634856551 nanoseconds:231375000} file:"builtinbackupengine.go" line:230 value:"restarting mysql replication"
localvtctldclient case
commerce/0 (zone1-0000000102): time:{seconds:1634900425 nanoseconds:188221000} file:"builtinbackupengine.go" line:141 value:"Hook: , Compress: true"
commerce/0 (zone1-0000000102): time:{seconds:1634900425 nanoseconds:192868000} file:"builtinbackupengine.go" line:151 value:"getting current replication status"
commerce/0 (zone1-0000000102): time:{seconds:1634900425 nanoseconds:259556000} file:"builtinbackupengine.go" line:192 value:"using replication position: d91fb872-32c0-11ec-a4c2-1f77f97c8111:1-28"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:349101000} file:"builtinbackupengine.go" line:287 value:"found 289 files to backup"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:349505000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ibdata1"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:349559000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_buffer_pool"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:349639000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/gtid_executed.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:349804000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:355222000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_logfile0"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:357702000} file:"builtinbackupengine.go" line:376 value:"Backing up file: ib_logfile1"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:357709000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:364838000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/local_metadata.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:371314000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/local_metadata.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:373517000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/reparent_journal.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:377835000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:379290000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:382198000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/shard_metadata.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:385509000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/columns_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:390465000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:394498000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:397679000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/reparent_journal.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:401712000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/schema_migrations.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:401712000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/shard_metadata.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:404250000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:405119000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_category.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:406025000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_category.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:407099000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_keyword.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:409535000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:409532000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_keyword.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:412212000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_relation.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:414433000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_relation.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:415984000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_topic.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:417750000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/help_topic.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:419837000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_index_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:421685000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_index_stats.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:424985000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_table_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:427862000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/innodb_table_stats.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:430146000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:431958000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:435667000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/ndb_binlog_index.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:438998000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/plugin.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:442042000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/plugin.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:446415000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:454371000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:456685000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proc.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:456819000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:458987000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:459121000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/procs_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:460811000} file:"builtinbackupengine.go" line:376 value:"Backing up file: _vt/schema_migrations.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:460990000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:463186000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/proxies_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:463729000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/server_cost.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:464599000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/server_cost.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:465842000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/servers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:467839000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/servers.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:468062000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_master_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:470103000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_master_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:470223000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_relay_log_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:472174000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_relay_log_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:472543000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:474290000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:474450000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:476294000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:476296000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/tables_priv.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:478332000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:478479000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_leap_second.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:480184000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_leap_second.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:480307000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:482327000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:482346000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_worker_info.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:482453000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slave_worker_info.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:484092000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.CSV"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:484219000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:484238000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/slow_log.CSM"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:485371000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_name.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:486585000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:486597000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:488162000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:488257000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/time_zone_transition_type.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:488264000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:490171000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:490424000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/user.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:492145000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/accounts.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:492253000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/cond_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:492266000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:494855000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:494853000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:495014000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:496601000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:496601000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:496782000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:498463000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/engine_cost.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:498516000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/engine_cost.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:498526000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_stages_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:500337000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.MYD"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:500329000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:500388000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/event.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:501507000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:501629000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:502176000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:502629000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:503096000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:503539000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_digest.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:504321000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_program.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:504378000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:504580000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:504657000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:506208000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_statements_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:506208000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:506259000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:506364000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/global_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:507762000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:507826000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:507871000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_history.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:508009000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_history_long.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:509356000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:509355000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:509496000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:509778000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:510829000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:510846000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_current.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:510874000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_transactions_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:510875000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:512030000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:512050000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/events_waits_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:512061000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:512191000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_summary_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:513786000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/file_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:514079000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_configuration.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:514144000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/host_cache.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:514164000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/global_variables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:514955000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/hosts.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:515193000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_account_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:515343000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_host_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:515512000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_thread_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:516738000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_by_user_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:516929000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/mutex_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:516952000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/memory_summary_global_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:517068000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/metadata_locks.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:518153000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/objects_summary_global_by_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:518252000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/performance_timers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:518646000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/prepared_statements_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:518646000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_group_members.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:519113000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:519712000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status_by_coordinator.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:520371000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_applier_status_by_worker.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:520494000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_connection_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:520554000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_connection_configuration.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:521710000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.CSM"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:521712000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/replication_group_member_stats.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:521865000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.MYI"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:522475000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/func.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:522993000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.CSV"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:523111000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/general_log.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:523164000} file:"builtinbackupengine.go" line:376 value:"Backing up file: mysql/gtid_executed.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:524100000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_host.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:524897000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/rwlock_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:525051000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_account_connect_attrs.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:525057000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_connect_attrs.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:525248000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:526134000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/session_variables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:526164000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_actors.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:526349000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_consumers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:526498000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_instruments.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:528297000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_objects.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:528310000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/setup_timers.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:528310000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_instances.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:528527000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_summary_by_event_name.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:530183000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/socket_summary_by_instance.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:530298000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_account.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:530324000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:531414000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:531587000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/status_by_user.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:531597000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_handles.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:531755000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/variables_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:532810000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/users.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:532822000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_io_waits_summary_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:532838000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_io_waits_summary_by_index_usage.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:533148000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/table_lock_waits_summary_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:534578000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/user_variables_by_thread.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:534577000} file:"builtinbackupengine.go" line:376 value:"Backing up file: performance_schema/threads.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:534956000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:534974000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:535652000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:535833000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:536564000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:536691000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:537061000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/host_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:537123000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_buffer_stats_by_schema.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:537775000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_buffer_stats_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:537777000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/wait_classes_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:538515000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_runtimes_in_95th_percentile.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:538537000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_sorting.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:539471000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_temp_tables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:539740000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.TRG"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:541040000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:541214000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config_update_set_user.TRN"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:541231000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config_insert_set_user.TRN"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:541315000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/sys_config.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:542280000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:542281000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:542440000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/innodb_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:544030000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:544257000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_by_thread_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:545352000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_by_host_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:545351000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_file_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:546398000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_file_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:546594000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_wait_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:546736000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/latest_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:546742000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/io_global_by_wait_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:548212000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_host_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:548239000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_thread_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:549684000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_by_user_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:550069000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_global_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:550165000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:550188000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_by_user_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:550891000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:551312000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:552083000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/user_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:552226000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/version.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:552863000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/wait_classes_global_by_avg_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:554009000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/processlist.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:554009000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/memory_global_total.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:554009000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/metrics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:554307000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/ps_check_lost_instrumentation.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:555721000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/product.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:555796000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:555860000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:556306000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:557262000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_auto_increment_columns.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:557263000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:557453000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_index_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:557666000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_tables_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:558421000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_unused_indexes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:558544000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/session.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:558593000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_by_thread_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:559076000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/waits_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:559676000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:560358000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024host_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:560651000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_buffer_stats_by_schema.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:560798000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024innodb_buffer_stats_by_table.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:560857000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/session_ssl_status.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:561424000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_object_overview.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:561750000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statement_analysis.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:561834000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/statements_with_errors_or_warnings.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:561914000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_redundant_indexes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:562859000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:563014000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:563883000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_file_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:563939000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:564171000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_sorting.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:564212000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_runtimes_in_95th_percentile.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:564923000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_temp_tables.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:565081000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:565233000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:565657000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_file_io_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:566420000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statements_with_errors_or_warnings.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:566809000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_file_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:567820000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_wait_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:567820000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024io_global_by_wait_by_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:567944000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024latest_file_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:568447000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_host_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:569395000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_thread_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:569414000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_global_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:569641000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_by_user_by_current_bytes.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:569941000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024memory_global_total.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:570663000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024processlist.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:571031000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/schema_table_statistics_with_buffer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:571033000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_digest_95th_percentile_by_avg_us.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:571038000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_digest_avg_latency_distribution.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:571715000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024ps_schema_table_statistics_io.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:572146000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_flattened_keys.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:572150000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_index_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:572213000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_lock_waits.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:572713000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_statistics.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:573770000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_statement_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:573778000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:573782000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_table_statistics_with_buffer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:574892000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_statement_type.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:575084000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024session.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:575128000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024schema_tables_with_full_table_scans.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:575343000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024user_summary_by_stages.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:576022000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/corder.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:576023000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/corder.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:576213000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/customer.ibd"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:576330000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/customer.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:577744000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/db.opt"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:578021000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024wait_classes_global_by_avg_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:578057000} file:"builtinbackupengine.go" line:376 value:"Backing up file: vt_commerce/product.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:578171000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024wait_classes_global_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:579587000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_by_host_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:579587000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024waits_by_user_by_latency.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900429 nanoseconds:580437000} file:"builtinbackupengine.go" line:376 value:"Backing up file: sys/x@0024statement_analysis.frm"
commerce/0 (zone1-0000000102): time:{seconds:1634900431 nanoseconds:594832000} file:"builtinbackupengine.go" line:213 value:"resetting mysqld read-only to true"
commerce/0 (zone1-0000000102): time:{seconds:1634900431 nanoseconds:597261000} file:"builtinbackupengine.go" line:230 value:"restarting mysql replication"

Kudos

Kudos to @setassociative for rubber ducking with me to figure out the fix in 07c1fe6.

Related Issue(s)

Closes #9063

Checklist

  • Should this PR be backported? no
  • Tests were added or are not required n/a (one day i will figure out a good testing story for codegen but it is not this day)
  • Documentation was added or is not required

Deployment Notes

Signed-off-by: Andrew Mason <amason@slack-corp.com>
(and also the individual message channels, because i don't actually
understand why this can't be unbuffered and so i'd rather not think
about it)

Signed-off-by: Andrew Mason <amason@slack-corp.com>
Signed-off-by: Andrew Mason <amason@slack-corp.com>
Copy link
Contributor

@setassociative setassociative left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approval driven largely by inspection of the generated code during debugging session. I did take took a look through the codegen though and it seems reasonable.

@deepthi deepthi requested a review from vmg October 27, 2021 05:00
Copy link
Collaborator

@vmg vmg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems sensible to me.

@ajm188 ajm188 merged commit ad3cc4e into vitessio:main Oct 27, 2021
@ajm188 ajm188 deleted the vtctldclient-codegen-streaming branch October 27, 2021 15:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Extend vtctldclient codegen to support streaming RPCs
3 participants