Advertisement
cbenger

Untitled

Apr 4th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 77.28 KB | None | 0 0
  1. MySQL started.
  2. Setup MySQL schema.
  3. 2024-04-04T15:28:32.133Z INFO Starting schema setup {"config": {"SchemaFilePath":"","InitialVersion":"0.0","Overwrite":false,"DisableVersioning":false}, "logging-call-at": "setuptask.go:58"}
  4. 2024-04-04T15:28:32.133Z DEBUG Setting up version tables {"logging-call-at": "setuptask.go:68"}
  5. 2024-04-04T15:28:32.192Z DEBUG Setting initial schema version to 0.0 {"logging-call-at": "setuptask.go:119"}
  6. 2024-04-04T15:28:32.194Z DEBUG Updating schema update log {"logging-call-at": "setuptask.go:124"}
  7. 2024-04-04T15:28:32.197Z INFO Schema setup complete {"logging-call-at": "setuptask.go:132"}
  8. 2024-04-04T15:28:32.212Z INFO UpdateSchemeTask started {"config": {"DBName":"","TargetVersion":"","SchemaDir":"/etc/temporal/schema/mysql/v8/temporal/versioned","IsDryRun":false}, "logging-call-at": "updatetask.go:97"}
  9. 2024-04-04T15:28:32.212Z DEBUG Schema Dirs: [v1.0 v1.1 v1.2 v1.3 v1.4 v1.5 v1.6 v1.7 v1.8 v1.9 v1.10] {"logging-call-at": "updatetask.go:195"}
  10. 2024-04-04T15:28:32.212Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.0/schema.sql {"logging-call-at": "updatetask.go:241"}
  11. 2024-04-04T15:28:32.213Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.1/cluster_metadata.sql {"logging-call-at": "updatetask.go:241"}
  12. 2024-04-04T15:28:32.213Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.2/queue.sql {"logging-call-at": "updatetask.go:241"}
  13. 2024-04-04T15:28:32.213Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.2/blob_size.sql {"logging-call-at": "updatetask.go:241"}
  14. 2024-04-04T15:28:32.213Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.3/visibility_tasks.sql {"logging-call-at": "updatetask.go:241"}
  15. 2024-04-04T15:28:32.213Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.4/cluster_metadata.sql {"logging-call-at": "updatetask.go:241"}
  16. 2024-04-04T15:28:32.214Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.5/event.sql {"logging-call-at": "updatetask.go:241"}
  17. 2024-04-04T15:28:32.214Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.5/executions.sql {"logging-call-at": "updatetask.go:241"}
  18. 2024-04-04T15:28:32.214Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.5/cluster_membership.sql {"logging-call-at": "updatetask.go:241"}
  19. 2024-04-04T15:28:32.214Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.6/queue_metadata.sql {"logging-call-at": "updatetask.go:241"}
  20. 2024-04-04T15:28:32.214Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.7/cluster_metadata_info.sql {"logging-call-at": "updatetask.go:241"}
  21. 2024-04-04T15:28:32.215Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.7/no_start_version.sql {"logging-call-at": "updatetask.go:241"}
  22. 2024-04-04T15:28:32.215Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.7/tiered_storage_tasks.sql {"logging-call-at": "updatetask.go:241"}
  23. 2024-04-04T15:28:32.215Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.8/drop_unused_tasks_table.sql {"logging-call-at": "updatetask.go:241"}
  24. 2024-04-04T15:28:32.215Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.8/alter_columns.sql {"logging-call-at": "updatetask.go:241"}
  25. 2024-04-04T15:28:32.215Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.9/history_tasks_table.sql {"logging-call-at": "updatetask.go:241"}
  26. 2024-04-04T15:28:32.216Z INFO Processing schema file: /etc/temporal/schema/mysql/v8/temporal/versioned/v1.10/task_queue_user_data.sql {"logging-call-at": "updatetask.go:241"}
  27. 2024-04-04T15:28:32.216Z DEBUG running 11 updates for current version 0.0 {"logging-call-at": "updatetask.go:131"}
  28. 2024-04-04T15:28:32.216Z DEBUG ---- Executing updates for version 1.0 ---- {"logging-call-at": "updatetask.go:150"}
  29. 2024-04-04T15:28:32.216Z DEBUG CREATE TABLE namespaces( partition_id INT NOT NULL, id BINARY(16) NOT NULL, name VARCHAR(255) UNIQUE NOT NULL, notification_version BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, is_global TINYINT(1) NOT NULL, PRIMARY KEY(partition_id, id) ); {"logging-call-at": "updatetask.go:152"}
  30. 2024-04-04T15:28:32.241Z DEBUG CREATE TABLE namespace_metadata ( partition_id INT NOT NULL, notification_version BIGINT NOT NULL, PRIMARY KEY(partition_id) ); {"logging-call-at": "updatetask.go:152"}
  31. 2024-04-04T15:28:32.266Z DEBUG INSERT INTO namespace_metadata (partition_id, notification_version) VALUES (54321, 1); {"logging-call-at": "updatetask.go:152"}
  32. 2024-04-04T15:28:32.268Z DEBUG CREATE TABLE shards ( shard_id INT NOT NULL, range_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id) ); {"logging-call-at": "updatetask.go:152"}
  33. 2024-04-04T15:28:32.286Z DEBUG CREATE TABLE transfer_tasks( shard_id INT NOT NULL, task_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  34. 2024-04-04T15:28:32.311Z DEBUG CREATE TABLE executions( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, next_event_id BIGINT NOT NULL, last_write_version BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, state BLOB NOT NULL, state_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id) ); {"logging-call-at": "updatetask.go:152"}
  35. 2024-04-04T15:28:32.335Z DEBUG CREATE TABLE current_executions( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, create_request_id VARCHAR(64) NOT NULL, state INT NOT NULL, status INT NOT NULL, start_version BIGINT NOT NULL, last_write_version BIGINT NOT NULL, PRIMARY KEY (shard_id, namespace_id, workflow_id) ); {"logging-call-at": "updatetask.go:152"}
  36. 2024-04-04T15:28:32.355Z DEBUG CREATE TABLE buffered_events ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, id BIGINT AUTO_INCREMENT NOT NULL UNIQUE, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, id) ); {"logging-call-at": "updatetask.go:152"}
  37. 2024-04-04T15:28:32.393Z DEBUG CREATE TABLE tasks ( range_hash INT UNSIGNED NOT NULL, task_queue_id VARBINARY(272) NOT NULL, task_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (range_hash, task_queue_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  38. 2024-04-04T15:28:32.424Z DEBUG CREATE TABLE task_queues ( range_hash INT UNSIGNED NOT NULL, task_queue_id VARBINARY(272) NOT NULL, range_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (range_hash, task_queue_id) ); {"logging-call-at": "updatetask.go:152"}
  39. 2024-04-04T15:28:32.448Z DEBUG CREATE TABLE replication_tasks ( shard_id INT NOT NULL, task_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, task_id) );{"logging-call-at": "updatetask.go:152"}
  40. 2024-04-04T15:28:32.468Z DEBUG CREATE TABLE replication_tasks_dlq ( source_cluster_name VARCHAR(255) NOT NULL, shard_id INT NOT NULL, task_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (source_cluster_name, shard_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  41. 2024-04-04T15:28:32.492Z DEBUG CREATE TABLE timer_tasks ( shard_id INT NOT NULL, visibility_timestamp DATETIME(6) NOT NULL, task_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, visibility_timestamp, task_id) ); {"logging-call-at": "updatetask.go:152"}
  42. 2024-04-04T15:28:32.511Z DEBUG CREATE TABLE activity_info_maps ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, schedule_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16), PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, schedule_id) ); {"logging-call-at": "updatetask.go:152"}
  43. 2024-04-04T15:28:32.535Z DEBUG CREATE TABLE timer_info_maps ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, timer_id VARCHAR(255) NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16), PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, timer_id) ); {"logging-call-at": "updatetask.go:152"}
  44. 2024-04-04T15:28:32.559Z DEBUG CREATE TABLE child_execution_info_maps ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, initiated_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16), PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, initiated_id) ); {"logging-call-at": "updatetask.go:152"}
  45. 2024-04-04T15:28:32.584Z DEBUG CREATE TABLE request_cancel_info_maps ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, initiated_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16), PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, initiated_id) ); {"logging-call-at": "updatetask.go:152"}
  46. 2024-04-04T15:28:32.607Z DEBUG CREATE TABLE signal_info_maps ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, initiated_id BIGINT NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16), PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, initiated_id) ); {"logging-call-at": "updatetask.go:152"}
  47. 2024-04-04T15:28:32.626Z DEBUG CREATE TABLE signals_requested_sets ( shard_id INT NOT NULL, namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, signal_id VARCHAR(64) NOT NULL, PRIMARY KEY (shard_id, namespace_id, workflow_id, run_id, signal_id) ); {"logging-call-at": "updatetask.go:152"}
  48. 2024-04-04T15:28:32.650Z DEBUG CREATE TABLE history_node ( shard_id INT NOT NULL, tree_id BINARY(16) NOT NULL, branch_id BINARY(16) NOT NULL, node_id BIGINT NOT NULL, txn_id BIGINT NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, tree_id, branch_id, node_id, txn_id) ); {"logging-call-at": "updatetask.go:152"}
  49. 2024-04-04T15:28:32.673Z DEBUG CREATE TABLE history_tree ( shard_id INT NOT NULL, tree_id BINARY(16) NOT NULL, branch_id BINARY(16) NOT NULL, data BLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, tree_id, branch_id) ); {"logging-call-at": "updatetask.go:152"}
  50. 2024-04-04T15:28:32.692Z DEBUG CREATE TABLE queue ( queue_type INT NOT NULL, message_id BIGINT NOT NULL, message_payload BLOB NOT NULL, PRIMARY KEY(queue_type, message_id) ); {"logging-call-at": "updatetask.go:152"}
  51. 2024-04-04T15:28:32.716Z DEBUG CREATE TABLE queue_metadata ( queue_type INT NOT NULL, data BLOB NOT NULL, PRIMARY KEY(queue_type) ); {"logging-call-at": "updatetask.go:152"}
  52. 2024-04-04T15:28:32.742Z DEBUG CREATE TABLE cluster_metadata ( metadata_partition INT NOT NULL, immutable_data BLOB NOT NULL, immutable_data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY(metadata_partition) ); {"logging-call-at": "updatetask.go:152"}
  53. 2024-04-04T15:28:32.766Z DEBUG CREATE TABLE cluster_membership ( membership_partition INT NOT NULL, host_id BINARY(16) NOT NULL, rpc_address VARCHAR(15) NOT NULL, rpc_port SMALLINT NOT NULL, role TINYINT NOT NULL, session_start TIMESTAMP DEFAULT '1970-01-02 00:00:01', last_heartbeat TIMESTAMP DEFAULT '1970-01-02 00:00:01', record_expiry TIMESTAMP DEFAULT '1970-01-02 00:00:01', INDEX (role, host_id), INDEX (role, last_heartbeat), INDEX (rpc_address, role), INDEX (last_heartbeat), INDEX (record_expiry), PRIMARY KEY (membership_partition, host_id) ); {"logging-call-at": "updatetask.go:152"}
  54. 2024-04-04T15:28:32.834Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  55. 2024-04-04T15:28:32.844Z DEBUG Schema updated from 0.0 to 1.0 {"logging-call-at": "updatetask.go:142"}
  56. 2024-04-04T15:28:32.844Z DEBUG ---- Executing updates for version 1.1 ---- {"logging-call-at": "updatetask.go:150"}
  57. 2024-04-04T15:28:32.844Z DEBUG ALTER TABLE cluster_metadata ADD data BLOB NOT NULL; {"logging-call-at": "updatetask.go:152"}
  58. 2024-04-04T15:28:32.878Z DEBUG ALTER TABLE cluster_metadata ADD data_encoding VARCHAR(16) NOT NULL DEFAULT 'Proto3'; {"logging-call-at": "updatetask.go:152"}
  59. 2024-04-04T15:28:32.905Z DEBUG ALTER TABLE cluster_metadata ADD version BIGINT NOT NULL DEFAULT 1; {"logging-call-at": "updatetask.go:152"}
  60. 2024-04-04T15:28:32.933Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  61. 2024-04-04T15:28:32.942Z DEBUG Schema updated from 1.0 to 1.1 {"logging-call-at": "updatetask.go:142"}
  62. 2024-04-04T15:28:32.942Z DEBUG ---- Executing updates for version 1.2 ---- {"logging-call-at": "updatetask.go:150"}
  63. 2024-04-04T15:28:32.942Z DEBUG ALTER TABLE queue ADD message_encoding VARCHAR(16) NOT NULL DEFAULT 'Json'; {"logging-call-at": "updatetask.go:152"}
  64. 2024-04-04T15:28:32.969Z DEBUG ALTER TABLE queue_metadata ADD data_encoding VARCHAR(16) NOT NULL DEFAULT 'Json'; {"logging-call-at": "updatetask.go:152"}
  65. 2024-04-04T15:28:32.998Z DEBUG ALTER TABLE namespaces MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  66. 2024-04-04T15:28:33.058Z DEBUG ALTER TABLE shards MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  67. 2024-04-04T15:28:33.106Z DEBUG ALTER TABLE transfer_tasks MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  68. 2024-04-04T15:28:33.150Z DEBUG ALTER TABLE executions MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  69. 2024-04-04T15:28:33.199Z DEBUG ALTER TABLE executions MODIFY COLUMN state MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  70. 2024-04-04T15:28:33.249Z DEBUG ALTER TABLE tasks MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  71. 2024-04-04T15:28:33.298Z DEBUG ALTER TABLE task_queues MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  72. 2024-04-04T15:28:33.341Z DEBUG ALTER TABLE replication_tasks MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  73. 2024-04-04T15:28:33.389Z DEBUG ALTER TABLE replication_tasks_dlq MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  74. 2024-04-04T15:28:33.448Z DEBUG ALTER TABLE timer_tasks MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  75. 2024-04-04T15:28:33.495Z DEBUG ALTER TABLE activity_info_maps MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  76. 2024-04-04T15:28:33.543Z DEBUG ALTER TABLE timer_info_maps MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  77. 2024-04-04T15:28:33.588Z DEBUG ALTER TABLE child_execution_info_maps MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  78. 2024-04-04T15:28:33.634Z DEBUG ALTER TABLE request_cancel_info_maps MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  79. 2024-04-04T15:28:33.681Z DEBUG ALTER TABLE signal_info_maps MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  80. 2024-04-04T15:28:33.729Z DEBUG ALTER TABLE history_tree MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  81. 2024-04-04T15:28:33.781Z DEBUG ALTER TABLE queue MODIFY COLUMN message_payload MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  82. 2024-04-04T15:28:33.826Z DEBUG ALTER TABLE queue_metadata MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  83. 2024-04-04T15:28:33.866Z DEBUG ALTER TABLE cluster_metadata MODIFY COLUMN data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  84. 2024-04-04T15:28:33.908Z DEBUG ALTER TABLE cluster_metadata MODIFY COLUMN immutable_data MEDIUMBLOB; {"logging-call-at": "updatetask.go:152"}
  85. 2024-04-04T15:28:33.957Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  86. 2024-04-04T15:28:33.962Z DEBUG Schema updated from 1.1 to 1.2 {"logging-call-at": "updatetask.go:142"}
  87. 2024-04-04T15:28:33.962Z DEBUG ---- Executing updates for version 1.3 ---- {"logging-call-at": "updatetask.go:150"}
  88. 2024-04-04T15:28:33.962Z DEBUG CREATE TABLE visibility_tasks( shard_id INT NOT NULL, task_id BIGINT NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  89. 2024-04-04T15:28:33.996Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  90. 2024-04-04T15:28:34.002Z DEBUG Schema updated from 1.2 to 1.3 {"logging-call-at": "updatetask.go:142"}
  91. 2024-04-04T15:28:34.002Z DEBUG ---- Executing updates for version 1.4 ---- {"logging-call-at": "updatetask.go:150"}
  92. 2024-04-04T15:28:34.002Z DEBUG ALTER TABLE cluster_metadata DROP immutable_data; {"logging-call-at": "updatetask.go:152"}
  93. 2024-04-04T15:28:34.051Z DEBUG ALTER TABLE cluster_metadata DROP immutable_data_encoding; {"logging-call-at": "updatetask.go:152"}
  94. 2024-04-04T15:28:34.086Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  95. 2024-04-04T15:28:34.092Z DEBUG Schema updated from 1.3 to 1.4 {"logging-call-at": "updatetask.go:142"}
  96. 2024-04-04T15:28:34.092Z DEBUG ---- Executing updates for version 1.5 ---- {"logging-call-at": "updatetask.go:150"}
  97. 2024-04-04T15:28:34.092Z DEBUG ALTER TABLE history_node ADD prev_txn_id BIGINT NOT NULL DEFAULT 0; {"logging-call-at": "updatetask.go:152"}
  98. 2024-04-04T15:28:34.119Z DEBUG ALTER TABLE executions ADD db_record_version BIGINT NOT NULL DEFAULT 0; {"logging-call-at": "updatetask.go:152"}
  99. 2024-04-04T15:28:34.154Z DEBUG ALTER TABLE cluster_membership MODIFY COLUMN rpc_address VARCHAR(128); {"logging-call-at": "updatetask.go:152"}
  100. 2024-04-04T15:28:34.241Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  101. 2024-04-04T15:28:34.246Z DEBUG Schema updated from 1.4 to 1.5 {"logging-call-at": "updatetask.go:142"}
  102. 2024-04-04T15:28:34.246Z DEBUG ---- Executing updates for version 1.6 ---- {"logging-call-at": "updatetask.go:150"}
  103. 2024-04-04T15:28:34.246Z DEBUG ALTER TABLE queue_metadata ADD version BIGINT NOT NULL DEFAULT 0; {"logging-call-at": "updatetask.go:152"}
  104. 2024-04-04T15:28:34.281Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  105. 2024-04-04T15:28:34.286Z DEBUG Schema updated from 1.5 to 1.6 {"logging-call-at": "updatetask.go:142"}
  106. 2024-04-04T15:28:34.286Z DEBUG ---- Executing updates for version 1.7 ---- {"logging-call-at": "updatetask.go:150"}
  107. 2024-04-04T15:28:34.286Z DEBUG CREATE TABLE cluster_metadata_info ( metadata_partition INT NOT NULL, cluster_name VARCHAR(255) NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, version BIGINT NOT NULL, PRIMARY KEY(metadata_partition, cluster_name) ); {"logging-call-at": "updatetask.go:152"}
  108. 2024-04-04T15:28:34.304Z DEBUG ALTER TABLE current_executions ALTER COLUMN start_version SET DEFAULT 0; {"logging-call-at": "updatetask.go:152"}
  109. 2024-04-04T15:28:34.330Z DEBUG CREATE TABLE tiered_storage_tasks ( shard_id INT NOT NULL, task_id BIGINT NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  110. 2024-04-04T15:28:34.353Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  111. 2024-04-04T15:28:34.358Z DEBUG Schema updated from 1.6 to 1.7 {"logging-call-at": "updatetask.go:142"}
  112. 2024-04-04T15:28:34.358Z DEBUG ---- Executing updates for version 1.8 ---- {"logging-call-at": "updatetask.go:150"}
  113. 2024-04-04T15:28:34.358Z DEBUG DROP TABLE tiered_storage_tasks; {"logging-call-at": "updatetask.go:152"}
  114. 2024-04-04T15:28:34.376Z DEBUG ALTER TABLE current_executions MODIFY COLUMN create_request_id VARCHAR(255); {"logging-call-at": "updatetask.go:152"}
  115. 2024-04-04T15:28:34.418Z DEBUG ALTER TABLE signals_requested_sets MODIFY COLUMN signal_id VARCHAR(255); {"logging-call-at": "updatetask.go:152"}
  116. 2024-04-04T15:28:34.456Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  117. 2024-04-04T15:28:34.461Z DEBUG Schema updated from 1.7 to 1.8 {"logging-call-at": "updatetask.go:142"}
  118. 2024-04-04T15:28:34.461Z DEBUG ---- Executing updates for version 1.9 ---- {"logging-call-at": "updatetask.go:150"}
  119. 2024-04-04T15:28:34.461Z DEBUG CREATE TABLE history_immediate_tasks( shard_id INT NOT NULL, category_id INT NOT NULL, task_id BIGINT NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, category_id, task_id) ); {"logging-call-at": "updatetask.go:152"}
  120. 2024-04-04T15:28:34.484Z DEBUG CREATE TABLE history_scheduled_tasks ( shard_id INT NOT NULL, category_id INT NOT NULL, visibility_timestamp DATETIME(6) NOT NULL, task_id BIGINT NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, PRIMARY KEY (shard_id, category_id, visibility_timestamp, task_id) ); {"logging-call-at": "updatetask.go:152"}
  121. 2024-04-04T15:28:34.508Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  122. 2024-04-04T15:28:34.513Z DEBUG Schema updated from 1.8 to 1.9 {"logging-call-at": "updatetask.go:142"}
  123. 2024-04-04T15:28:34.513Z DEBUG ---- Executing updates for version 1.10 ---- {"logging-call-at": "updatetask.go:150"}
  124. 2024-04-04T15:28:34.513Z DEBUG CREATE TABLE task_queue_user_data ( namespace_id BINARY(16) NOT NULL, task_queue_name VARCHAR(255) NOT NULL, data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16) NOT NULL, version BIGINT NOT NULL, PRIMARY KEY (namespace_id, task_queue_name) ); {"logging-call-at": "updatetask.go:152"}
  125. 2024-04-04T15:28:34.536Z DEBUG CREATE TABLE build_id_to_task_queue ( namespace_id BINARY(16) NOT NULL, build_id VARCHAR(255) NOT NULL, task_queue_name VARCHAR(255) NOT NULL, PRIMARY KEY (namespace_id, build_id, task_queue_name) ); {"logging-call-at": "updatetask.go:152"}
  126. 2024-04-04T15:28:34.559Z DEBUG ---- Done ---- {"logging-call-at": "updatetask.go:169"}
  127. 2024-04-04T15:28:34.564Z DEBUG Schema updated from 1.9 to 1.10 {"logging-call-at": "updatetask.go:142"}
  128. 2024-04-04T15:28:34.564Z INFO UpdateSchemeTask done {"logging-call-at": "updatetask.go:120"}
  129. Elasticsearch started.
  130. Warning: Couldn't read data from file
  131. Warning: "/etc/temporal/schema/elasticsearch/visibility/cluster_settings_v8.jso
  132. Warning: n", this makes an empty POST.
  133. curl: (22) The requested URL returned error: 400
  134.  
  135. 2024/04/04 15:28:34 Loading config; env=docker,zone=,configDir=config
  136. 2024/04/04 15:28:34 Loading config files=[config/docker.yaml]
  137. {"level":"info","ts":"2024-04-04T15:28:34.619Z","msg":"Build info.","git-time":"2024-03-29T15:33:03.000Z","git-revision":"1543424cfda0b19797bda47d77a555474ec15639","git-modified":true,"go-arch":"amd64","go-os":"linux","go-version":"go1.22.1","cgo-enabled":false,"server-version":"1.22.7","debug-mode":false,"logging-call-at":"main.go:148"}
  138. {"level":"info","ts":"2024-04-04T15:28:34.619Z","msg":"Updated dynamic config","logging-call-at":"file_based_client.go:195"}
  139. {"level":"warn","ts":"2024-04-04T15:28:34.619Z","msg":"Not using any authorizer and flag `--allow-no-auth` not detected. Future versions will require using the flag `--allow-no-auth` if you do not want to set an authorizer.","logging-call-at":"main.go:178"}
  140. {"level":"info","ts":"2024-04-04T15:28:34.624Z","msg":"Use rpc address 127.0.0.1:7233 for cluster active.","component":"metadata-initializer","logging-call-at":"fx.go:732"}
  141. {"level":"info","ts":"2024-04-04T15:28:34.629Z","msg":"historyClient: ownership caching disabled","service":"history","logging-call-at":"client.go:82"}
  142. {"level":"info","ts":"2024-04-04T15:28:34.635Z","msg":"Created gRPC listener","service":"history","address":"0.0.0.0:7234","logging-call-at":"rpc.go:152"}
  143. {"level":"info","ts":"2024-04-04T15:28:34.639Z","msg":"Created gRPC listener","service":"matching","address":"0.0.0.0:7235","logging-call-at":"rpc.go:152"}
  144. {"level":"info","ts":"2024-04-04T15:28:34.639Z","msg":"historyClient: ownership caching disabled","service":"matching","logging-call-at":"client.go:82"}
  145. {"level":"info","ts":"2024-04-04T15:28:34.643Z","msg":"historyClient: ownership caching disabled","service":"frontend","logging-call-at":"client.go:82"}
  146. {"level":"info","ts":"2024-04-04T15:28:34.643Z","msg":"Created gRPC listener","service":"frontend","address":"0.0.0.0:7233","logging-call-at":"rpc.go:152"}
  147. {"level":"info","ts":"2024-04-04T15:28:34.644Z","msg":"Service is not requested, skipping initialization.","service":"internal-frontend","logging-call-at":"fx.go:477"}
  148. {"level":"info","ts":"2024-04-04T15:28:34.647Z","msg":"historyClient: ownership caching disabled","service":"worker","logging-call-at":"client.go:82"}
  149. {"level":"info","ts":"2024-04-04T15:28:34.647Z","msg":"PProf not started due to port not set","logging-call-at":"pprof.go:67"}
  150. {"level":"info","ts":"2024-04-04T15:28:34.647Z","msg":"Starting server for services","value":{"frontend":{},"history":{},"matching":{},"worker":{}},"logging-call-at":"server_impl.go:94"}
  151. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"fifo scheduler started","service":"history","logging-call-at":"fifo_scheduler.go:96"}
  152. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"interleaved weighted round robin task scheduler started","service":"history","logging-call-at":"interleaved_weighted_round_robin.go:197"}
  153. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"RuntimeMetricsReporter started","service":"frontend","logging-call-at":"runtime.go:138"}
  154. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"frontend starting","service":"frontend","logging-call-at":"service.go:336"}
  155. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"RuntimeMetricsReporter started","service":"worker","logging-call-at":"runtime.go:138"}
  156. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"RuntimeMetricsReporter started","service":"matching","logging-call-at":"runtime.go:138"}
  157. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"matching starting","service":"matching","logging-call-at":"service.go:91"}
  158. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"worker starting","service":"worker","component":"worker","logging-call-at":"service.go:379"}
  159. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"Starting to serve on matching listener","service":"matching","logging-call-at":"service.go:104"}
  160. {"level":"info","ts":"2024-04-04T15:28:34.655Z","msg":"Starting to serve on frontend listener","service":"frontend","logging-call-at":"service.go:355"}
  161. {"level":"info","ts":"2024-04-04T15:28:34.656Z","msg":"fifo scheduler started","service":"history","logging-call-at":"fifo_scheduler.go:96"}
  162. {"level":"info","ts":"2024-04-04T15:28:34.656Z","msg":"interleaved weighted round robin task scheduler started","service":"history","logging-call-at":"interleaved_weighted_round_robin.go:197"}
  163. {"level":"info","ts":"2024-04-04T15:28:34.656Z","msg":"fifo scheduler started","service":"history","component":"memory-scheduled-queue-processor","logging-call-at":"fifo_scheduler.go:96"}
  164. {"level":"info","ts":"2024-04-04T15:28:34.657Z","msg":"fifo scheduler started","service":"history","logging-call-at":"fifo_scheduler.go:96"}
  165. {"level":"info","ts":"2024-04-04T15:28:34.657Z","msg":"interleaved weighted round robin task scheduler started","service":"history","logging-call-at":"interleaved_weighted_round_robin.go:197"}
  166. {"level":"info","ts":"2024-04-04T15:28:34.657Z","msg":"fifo scheduler started","service":"history","logging-call-at":"fifo_scheduler.go:96"}
  167. {"level":"info","ts":"2024-04-04T15:28:34.657Z","msg":"interleaved weighted round robin task scheduler started","service":"history","logging-call-at":"interleaved_weighted_round_robin.go:197"}
  168. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"RuntimeMetricsReporter started","service":"history","logging-call-at":"runtime.go:138"}
  169. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"history starting","service":"history","logging-call-at":"service.go:91"}
  170. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"Replication task fetchers started.","logging-call-at":"task_fetcher.go:142"}
  171. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","lifecycle":"Started","logging-call-at":"controller_impl.go:136"}
  172. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"Starting to serve on history listener","service":"history","logging-call-at":"service.go:103"}
  173. {"level":"info","ts":"2024-04-04T15:28:34.658Z","msg":"sequential scheduler started","logging-call-at":"sequential_scheduler.go:96"}
  174. {"level":"info","ts":"2024-04-04T15:28:34.663Z","msg":"Membership heartbeat upserted successfully","address":"127.0.0.1","port":6939,"hostId":"002573f8-f298-11ee-a49b-0242c0a8d00d","logging-call-at":"monitor.go:256"}
  175. {"level":"info","ts":"2024-04-04T15:28:34.663Z","msg":"bootstrap hosts fetched","bootstrap-hostports":"127.0.0.1:6934,127.0.0.1:6935,127.0.0.1:6933,127.0.0.1:6939","logging-call-at":"monitor.go:298"}
  176. {"level":"info","ts":"2024-04-04T15:28:34.664Z","msg":"Membership heartbeat upserted successfully","address":"127.0.0.1","port":6933,"hostId":"0024df6d-f298-11ee-a49b-0242c0a8d00d","logging-call-at":"monitor.go:256"}
  177. {"level":"info","ts":"2024-04-04T15:28:34.664Z","msg":"Membership heartbeat upserted successfully","address":"127.0.0.1","port":6935,"hostId":"0024492a-f298-11ee-a49b-0242c0a8d00d","logging-call-at":"monitor.go:256"}
  178. {"level":"info","ts":"2024-04-04T15:28:34.664Z","msg":"Membership heartbeat upserted successfully","address":"127.0.0.1","port":6934,"hostId":"0022a89e-f298-11ee-a49b-0242c0a8d00d","logging-call-at":"monitor.go:256"}
  179. {"level":"info","ts":"2024-04-04T15:28:34.665Z","msg":"bootstrap hosts fetched","bootstrap-hostports":"127.0.0.1:6933,127.0.0.1:6939,127.0.0.1:6934,127.0.0.1:6935","logging-call-at":"monitor.go:298"}
  180. {"level":"info","ts":"2024-04-04T15:28:34.665Z","msg":"bootstrap hosts fetched","bootstrap-hostports":"127.0.0.1:6934,127.0.0.1:6935,127.0.0.1:6933,127.0.0.1:6939","logging-call-at":"monitor.go:298"}
  181. {"level":"info","ts":"2024-04-04T15:28:34.665Z","msg":"bootstrap hosts fetched","bootstrap-hostports":"127.0.0.1:6934,127.0.0.1:6935,127.0.0.1:6933,127.0.0.1:6939","logging-call-at":"monitor.go:298"}
  182. {"level":"info","ts":"2024-04-04T15:28:34.667Z","msg":"Current reachable members","component":"service-resolver","service":"matching","addresses":["127.0.0.1:7235"],"logging-call-at":"service_resolver.go:279"}
  183. {"level":"info","ts":"2024-04-04T15:28:34.667Z","msg":"Current reachable members","component":"service-resolver","service":"history","addresses":["127.0.0.1:7234"],"logging-call-at":"service_resolver.go:279"}
  184. {"level":"info","ts":"2024-04-04T15:28:34.667Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","component":"shard-controller","address":"127.0.0.1:7234","shard-update":"RingMembershipChangedEvent","number-processed":1,"number-deleted":0,"logging-call-at":"ownership.go:116"}
  185. {"level":"info","ts":"2024-04-04T15:28:34.667Z","msg":"Current reachable members","component":"service-resolver","service":"frontend","addresses":["127.0.0.1:7233"],"logging-call-at":"service_resolver.go:279"}
  186. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-context","logging-call-at":"context_impl.go:1482"}
  187. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","numShards":1,"logging-call-at":"controller_impl.go:286"}
  188. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"Current reachable members","component":"service-resolver","service":"matching","addresses":["127.0.0.1:7235"],"logging-call-at":"service_resolver.go:279"}
  189. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"Frontend is now healthy","service":"frontend","logging-call-at":"workflow_handler.go:219"}
  190. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-context","logging-call-at":"context_impl.go:1482"}
  191. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","numShards":2,"logging-call-at":"controller_impl.go:286"}
  192. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-context","logging-call-at":"context_impl.go:1482"}
  193. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","numShards":3,"logging-call-at":"controller_impl.go:286"}
  194. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-context","logging-call-at":"context_impl.go:1482"}
  195. {"level":"info","ts":"2024-04-04T15:28:34.668Z","msg":"none","component":"shard-controller","address":"127.0.0.1:7234","numShards":4,"logging-call-at":"controller_impl.go:286"}
  196. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Range updated for shardID","shard-id":3,"address":"127.0.0.1:7234","shard-range-id":1,"previous-shard-range-id":0,"number":0,"next-number":0,"logging-call-at":"context_impl.go:1147"}
  197. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Acquired shard","shard-id":3,"address":"127.0.0.1:7234","logging-call-at":"context_impl.go:1839"}
  198. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","lifecycle":"Starting","component":"shard-engine","logging-call-at":"context_impl.go:1358"}
  199. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Starting","logging-call-at":"history_engine.go:286"}
  200. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  201. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Task rescheduler started.","shard-id":3,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  202. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  203. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  204. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Task rescheduler started.","shard-id":3,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  205. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  206. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Starting","logging-call-at":"memory_scheduled_queue.go:103"}
  207. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Started","logging-call-at":"memory_scheduled_queue.go:108"}
  208. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  209. {"level":"error","ts":"2024-04-04T15:28:34.676Z","msg":"Unable to process new range","shard-id":3,"address":"127.0.0.1:7234","component":"archival-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  210. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Task rescheduler started.","shard-id":3,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  211. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  212. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  213. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"Task rescheduler started.","shard-id":3,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  214. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  215. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Started","logging-call-at":"history_engine.go:295"}
  216. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"none","shard-id":3,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-engine","logging-call-at":"context_impl.go:1361"}
  217. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"queue reader started","shard-id":3,"address":"127.0.0.1:7234","component":"archival-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  218. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"queue reader started","shard-id":3,"address":"127.0.0.1:7234","component":"timer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  219. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"queue reader started","shard-id":3,"address":"127.0.0.1:7234","component":"visibility-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  220. {"level":"info","ts":"2024-04-04T15:28:34.676Z","msg":"queue reader started","shard-id":3,"address":"127.0.0.1:7234","component":"transfer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  221. {"level":"info","ts":"2024-04-04T15:28:34.682Z","msg":"Range updated for shardID","shard-id":4,"address":"127.0.0.1:7234","shard-range-id":1,"previous-shard-range-id":0,"number":0,"next-number":0,"logging-call-at":"context_impl.go:1147"}
  222. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Acquired shard","shard-id":4,"address":"127.0.0.1:7234","logging-call-at":"context_impl.go:1839"}
  223. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","lifecycle":"Starting","component":"shard-engine","logging-call-at":"context_impl.go:1358"}
  224. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Range updated for shardID","shard-id":2,"address":"127.0.0.1:7234","shard-range-id":1,"previous-shard-range-id":0,"number":0,"next-number":0,"logging-call-at":"context_impl.go:1147"}
  225. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Range updated for shardID","shard-id":1,"address":"127.0.0.1:7234","shard-range-id":1,"previous-shard-range-id":0,"number":0,"next-number":0,"logging-call-at":"context_impl.go:1147"}
  226. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Acquired shard","shard-id":2,"address":"127.0.0.1:7234","logging-call-at":"context_impl.go:1839"}
  227. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Acquired shard","shard-id":1,"address":"127.0.0.1:7234","logging-call-at":"context_impl.go:1839"}
  228. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","lifecycle":"Starting","component":"shard-engine","logging-call-at":"context_impl.go:1358"}
  229. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","lifecycle":"Starting","component":"shard-engine","logging-call-at":"context_impl.go:1358"}
  230. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Starting","logging-call-at":"history_engine.go:286"}
  231. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  232. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":4,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  233. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  234. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Starting","logging-call-at":"history_engine.go:286"}
  235. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  236. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  237. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":1,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  238. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":4,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  239. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  240. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Starting","logging-call-at":"history_engine.go:286"}
  241. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":4,"address":"127.0.0.1:7234","component":"visibility-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  242. {"level":"error","ts":"2024-04-04T15:28:34.683Z","msg":"Unable to process new range","shard-id":1,"address":"127.0.0.1:7234","component":"archival-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  243. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  244. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  245. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":1,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  246. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  247. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Starting","logging-call-at":"memory_scheduled_queue.go:103"}
  248. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Started","logging-call-at":"memory_scheduled_queue.go:108"}
  249. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  250. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":1,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  251. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  252. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  253. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":1,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  254. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  255. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Started","logging-call-at":"history_engine.go:295"}
  256. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":1,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-engine","logging-call-at":"context_impl.go:1361"}
  257. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  258. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Starting","logging-call-at":"memory_scheduled_queue.go:103"}
  259. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":1,"address":"127.0.0.1:7234","component":"timer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  260. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":1,"address":"127.0.0.1:7234","component":"archival-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  261. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Started","logging-call-at":"memory_scheduled_queue.go:108"}
  262. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  263. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":4,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  264. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":2,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  265. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":1,"address":"127.0.0.1:7234","component":"visibility-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  266. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":1,"address":"127.0.0.1:7234","component":"transfer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  267. {"level":"error","ts":"2024-04-04T15:28:34.683Z","msg":"Unable to process new range","shard-id":2,"address":"127.0.0.1:7234","component":"archival-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  268. {"level":"error","ts":"2024-04-04T15:28:34.683Z","msg":"Unable to process new range","shard-id":4,"address":"127.0.0.1:7234","component":"timer-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  269. {"level":"error","ts":"2024-04-04T15:28:34.683Z","msg":"Unable to process new range","shard-id":4,"address":"127.0.0.1:7234","component":"archival-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  270. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"archival-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  271. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  272. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":2,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  273. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"visibility-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  274. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  275. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Starting","logging-call-at":"memory_scheduled_queue.go:103"}
  276. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":2,"address":"127.0.0.1:7234","component":"visibility-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  277. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  278. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":4,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  279. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  280. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Started","logging-call-at":"history_engine.go:295"}
  281. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":4,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-engine","logging-call-at":"context_impl.go:1361"}
  282. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","service":"history","component":"memory-scheduled-queue-processor","lifecycle":"Started","logging-call-at":"memory_scheduled_queue.go:108"}
  283. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":4,"address":"127.0.0.1:7234","component":"transfer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  284. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_scheduled.go:154"}
  285. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":2,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  286. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"timer-queue-processor","lifecycle":"Started","logging-call-at":"queue_scheduled.go:163"}
  287. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Starting","logging-call-at":"queue_immediate.go:114"}
  288. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"Task rescheduler started.","shard-id":2,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"rescheduler.go:126"}
  289. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"transfer-queue-processor","lifecycle":"Started","logging-call-at":"queue_immediate.go:123"}
  290. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":4,"address":"127.0.0.1:7234","component":"archival-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  291. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":4,"address":"127.0.0.1:7234","component":"timer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  292. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","component":"history-engine","lifecycle":"Started","logging-call-at":"history_engine.go:295"}
  293. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"none","shard-id":2,"address":"127.0.0.1:7234","lifecycle":"Started","component":"shard-engine","logging-call-at":"context_impl.go:1361"}
  294. {"level":"error","ts":"2024-04-04T15:28:34.683Z","msg":"Unable to process new range","shard-id":2,"address":"127.0.0.1:7234","component":"timer-queue-processor","error":"shard status unknown","logging-call-at":"queue_base.go:317","stacktrace":"go.temporal.io/server/common/log.(*zapLogger).Error\n\t/home/builder/temporal/common/log/zap_logger.go:156\ngo.temporal.io/server/service/history/queues.(*queueBase).processNewRange\n\t/home/builder/temporal/service/history/queues/queue_base.go:317\ngo.temporal.io/server/service/history/queues.(*scheduledQueue).processEventLoop\n\t/home/builder/temporal/service/history/queues/queue_scheduled.go:218"}
  295. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":2,"address":"127.0.0.1:7234","component":"timer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  296. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":2,"address":"127.0.0.1:7234","component":"archival-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  297. {"level":"info","ts":"2024-04-04T15:28:34.683Z","msg":"queue reader started","shard-id":2,"address":"127.0.0.1:7234","component":"transfer-queue-processor","queue-reader-id":0,"lifecycle":"Started","logging-call-at":"reader.go:182"}
  298. {"level":"info","ts":"2024-04-04T15:28:34.726Z","msg":"Current reachable members","component":"service-resolver","service":"worker","addresses":["127.0.0.1:7239"],"logging-call-at":"service_resolver.go:279"}
  299. {"level":"info","ts":"2024-04-04T15:28:34.727Z","msg":"Current reachable members","component":"service-resolver","service":"frontend","addresses":["127.0.0.1:7233"],"logging-call-at":"service_resolver.go:279"}
  300. {"level":"info","ts":"2024-04-04T15:28:34.727Z","msg":"Current reachable members","component":"service-resolver","service":"matching","addresses":["127.0.0.1:7235"],"logging-call-at":"service_resolver.go:279"}
  301. {"level":"info","ts":"2024-04-04T15:28:34.727Z","msg":"Current reachable members","component":"service-resolver","service":"history","addresses":["127.0.0.1:7234"],"logging-call-at":"service_resolver.go:279"}
  302. {"level":"info","ts":"2024-04-04T15:28:34.733Z","msg":"history client encountered error","service":"frontend","error":"Not enough hosts to serve the request","service-error-type":"serviceerror.Unavailable","logging-call-at":"metric_client.go:104"}
  303. {"level":"info","ts":"2024-04-04T15:28:34.733Z","msg":"history client encountered error","service":"frontend","error":"Not enough hosts to serve the request","service-error-type":"serviceerror.Unavailable","logging-call-at":"metric_client.go:104"}
  304. {"level":"info","ts":"2024-04-04T15:28:34.733Z","msg":"Current reachable members","component":"service-resolver","service":"history","addresses":["127.0.0.1:7234"],"logging-call-at":"service_resolver.go:279"}
  305. {"level":"info","ts":"2024-04-04T15:28:34.791Z","msg":"temporal-sys-history-scanner-workflow workflow successfully started","service":"worker","logging-call-at":"scanner.go:292"}
  306. {"level":"info","ts":"2024-04-04T15:28:34.807Z","msg":"temporal-sys-tq-scanner-workflow workflow successfully started","service":"worker","logging-call-at":"scanner.go:292"}
  307. {"level":"info","ts":"2024-04-04T15:28:34.870Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-sys-tq-scanner-taskqueue-0","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"scanner.go:239"}
  308. {"level":"info","ts":"2024-04-04T15:28:34.870Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/2","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  309. {"level":"info","ts":"2024-04-04T15:28:34.870Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:5dc7c236-4052-4394-96e3-feaef2ea442a","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  310. {"level":"info","ts":"2024-04-04T15:28:34.871Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:c2715d3c-4a33-43ec-b050-d1b94017e993","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  311. {"level":"info","ts":"2024-04-04T15:28:34.871Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-sys-history-scanner-taskqueue-0","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"scanner.go:239"}
  312. {"level":"info","ts":"2024-04-04T15:28:34.871Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/3","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  313. {"level":"info","ts":"2024-04-04T15:28:34.872Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/3","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  314. {"level":"info","ts":"2024-04-04T15:28:34.872Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  315. {"level":"info","ts":"2024-04-04T15:28:34.872Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-history-scanner-taskqueue-0","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  316. {"level":"info","ts":"2024-04-04T15:28:34.873Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:2ceba6c5-879f-4eb1-85ed-ef313c30dafb","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  317. {"level":"info","ts":"2024-04-04T15:28:34.873Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-archival-tq","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"client_worker.go:137"}
  318. {"level":"info","ts":"2024-04-04T15:28:34.874Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-archival-tq","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  319. {"level":"info","ts":"2024-04-04T15:28:34.874Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-tq-scanner-taskqueue-0","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  320. {"level":"info","ts":"2024-04-04T15:28:34.875Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  321. {"level":"info","ts":"2024-04-04T15:28:34.876Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-history-scanner-taskqueue-0","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  322. {"level":"info","ts":"2024-04-04T15:28:34.876Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/1","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  323. {"level":"info","ts":"2024-04-04T15:28:34.875Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-archival-tq/3","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  324. {"level":"info","ts":"2024-04-04T15:28:34.875Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-archival-tq/3","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  325. {"level":"info","ts":"2024-04-04T15:28:34.876Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-tq-scanner-taskqueue-0","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  326. {"level":"info","ts":"2024-04-04T15:28:34.877Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-archival-tq/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  327. {"level":"info","ts":"2024-04-04T15:28:34.877Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/2","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  328. {"level":"info","ts":"2024-04-04T15:28:34.877Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/3","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  329. {"level":"info","ts":"2024-04-04T15:28:34.877Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:d135516e-7297-4625-bf8b-3480b133c2e9","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  330. {"level":"info","ts":"2024-04-04T15:28:34.878Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-sys-processor-parent-close-policy","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"processor.go:98"}
  331. {"level":"info","ts":"2024-04-04T15:28:34.878Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-processor-parent-close-policy","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  332. {"level":"info","ts":"2024-04-04T15:28:34.879Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  333. {"level":"info","ts":"2024-04-04T15:28:34.879Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-sys-batcher-taskqueue","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"batcher.go:98"}
  334. {"level":"info","ts":"2024-04-04T15:28:34.879Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:d86ab635-a040-4b19-b74f-e415e5ea8cfb","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  335. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-batcher-taskqueue/2","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  336. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"default-worker-tq","WorkerID":"58@b59dedb1d7c1@","logging-call-at":"worker.go:101"}
  337. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","component":"worker-manager","lifecycle":"Started","logging-call-at":"worker.go:106"}
  338. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","component":"perns-worker-manager","lifecycle":"Starting","logging-call-at":"pernamespaceworker.go:166"}
  339. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","component":"perns-worker-manager","lifecycle":"Started","logging-call-at":"pernamespaceworker.go:177"}
  340. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"worker service started","service":"worker","component":"worker","address":"127.0.0.1:7239","logging-call-at":"service.go:418"}
  341. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/2","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  342. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-batcher-taskqueue/2","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  343. {"level":"info","ts":"2024-04-04T15:28:34.880Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:ae00a879-d0c8-4c85-b10e-3346fcc465ec","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  344. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-batcher-taskqueue","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  345. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"default-worker-tq","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  346. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/3","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  347. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"default-worker-tq","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  348. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-batcher-taskqueue/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  349. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"b59dedb1d7c1:8e63448c-c6fe-4561-8d64-7db95dbb5d9b","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  350. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/default-worker-tq/2","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  351. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"Started Worker","service":"worker","Namespace":"temporal-system","TaskQueue":"temporal-sys-per-ns-tq","WorkerID":"server-worker@58@b59dedb1d7c1@temporal-system","logging-call-at":"pernamespaceworker.go:483"}
  352. {"level":"info","ts":"2024-04-04T15:28:34.881Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-per-ns-tq","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  353. {"level":"info","ts":"2024-04-04T15:28:34.882Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-per-ns-tq","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  354. {"level":"info","ts":"2024-04-04T15:28:34.887Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-archival-tq","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  355. {"level":"info","ts":"2024-04-04T15:28:34.895Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-batcher-taskqueue","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  356. {"level":"info","ts":"2024-04-04T15:28:34.895Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"temporal-sys-processor-parent-close-policy","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  357. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"history","addresses":["127.0.0.1:7234"],"logging-call-at":"service_resolver.go:279"}
  358. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"frontend","addresses":["127.0.0.1:7233"],"logging-call-at":"service_resolver.go:279"}
  359. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"matching","addresses":["127.0.0.1:7235"],"logging-call-at":"service_resolver.go:279"}
  360. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"frontend","addresses":["127.0.0.1:7233"],"logging-call-at":"service_resolver.go:279"}
  361. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"worker","addresses":["127.0.0.1:7239"],"logging-call-at":"service_resolver.go:279"}
  362. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"worker","addresses":["127.0.0.1:7239"],"logging-call-at":"service_resolver.go:279"}
  363. {"level":"info","ts":"2024-04-04T15:28:44.668Z","msg":"Current reachable members","component":"service-resolver","service":"worker","addresses":["127.0.0.1:7239"],"logging-call-at":"service_resolver.go:279"}
  364. {"level":"info","ts":"2024-04-04T15:29:33.891Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-archival-tq/1","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  365. {"level":"info","ts":"2024-04-04T15:29:33.893Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/3","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  366. {"level":"info","ts":"2024-04-04T15:29:33.893Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-archival-tq/2","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  367. {"level":"info","ts":"2024-04-04T15:29:33.893Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-history-scanner-taskqueue-0/2","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  368. {"level":"info","ts":"2024-04-04T15:29:33.894Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/1","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  369. {"level":"info","ts":"2024-04-04T15:29:33.896Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/default-worker-tq/3","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  370. {"level":"info","ts":"2024-04-04T15:29:33.897Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/2","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  371. {"level":"info","ts":"2024-04-04T15:29:33.897Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-batcher-taskqueue/3","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  372. {"level":"info","ts":"2024-04-04T15:29:34.889Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/3","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  373. {"level":"info","ts":"2024-04-04T15:29:34.889Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-tq-scanner-taskqueue-0/2","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  374. {"level":"info","ts":"2024-04-04T15:29:34.897Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/default-worker-tq/1","wf-task-queue-type":"Activity","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  375. {"level":"info","ts":"2024-04-04T15:30:33.897Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-batcher-taskqueue/1","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  376. {"level":"info","ts":"2024-04-04T15:30:33.897Z","msg":"none","service":"matching","component":"matching-engine","wf-task-queue-name":"/_sys/temporal-sys-processor-parent-close-policy/1","wf-task-queue-type":"Workflow","wf-namespace":"temporal-system","lifecycle":"Started","logging-call-at":"task_queue_manager.go:331"}
  377.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement