temporalio 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +175 -4
- data/bridge/Cargo.lock +44 -21
- data/bridge/Cargo.toml +1 -0
- data/bridge/sdk-core/Cargo.toml +1 -1
- data/bridge/sdk-core/README.md +1 -4
- data/bridge/sdk-core/client/Cargo.toml +1 -1
- data/bridge/sdk-core/client/src/lib.rs +12 -20
- data/bridge/sdk-core/client/src/raw.rs +9 -8
- data/bridge/sdk-core/client/src/retry.rs +100 -23
- data/bridge/sdk-core/core/Cargo.toml +7 -7
- data/bridge/sdk-core/core/benches/workflow_replay.rs +13 -10
- data/bridge/sdk-core/core/src/abstractions.rs +22 -22
- data/bridge/sdk-core/core/src/core_tests/activity_tasks.rs +146 -43
- data/bridge/sdk-core/core/src/core_tests/local_activities.rs +419 -9
- data/bridge/sdk-core/core/src/core_tests/queries.rs +247 -89
- data/bridge/sdk-core/core/src/core_tests/workers.rs +2 -2
- data/bridge/sdk-core/core/src/core_tests/workflow_cancels.rs +1 -1
- data/bridge/sdk-core/core/src/core_tests/workflow_tasks.rs +47 -27
- data/bridge/sdk-core/core/src/lib.rs +139 -32
- data/bridge/sdk-core/core/src/protosext/mod.rs +1 -1
- data/bridge/sdk-core/core/src/replay/mod.rs +185 -41
- data/bridge/sdk-core/core/src/telemetry/log_export.rs +190 -0
- data/bridge/sdk-core/core/src/telemetry/metrics.rs +184 -139
- data/bridge/sdk-core/core/src/telemetry/mod.rs +310 -315
- data/bridge/sdk-core/core/src/telemetry/prometheus_server.rs +4 -3
- data/bridge/sdk-core/core/src/test_help/mod.rs +23 -9
- data/bridge/sdk-core/core/src/worker/activities/local_activities.rs +12 -6
- data/bridge/sdk-core/core/src/worker/activities.rs +40 -23
- data/bridge/sdk-core/core/src/worker/client/mocks.rs +1 -1
- data/bridge/sdk-core/core/src/worker/client.rs +30 -4
- data/bridge/sdk-core/core/src/worker/mod.rs +23 -19
- data/bridge/sdk-core/core/src/worker/workflow/driven_workflow.rs +10 -19
- data/bridge/sdk-core/core/src/worker/workflow/history_update.rs +99 -25
- data/bridge/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +3 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +2 -6
- data/bridge/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +24 -22
- data/bridge/sdk-core/core/src/worker/workflow/machines/mod.rs +12 -38
- data/bridge/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +178 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +8 -2
- data/bridge/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +1 -5
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +1 -1
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +233 -217
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +1 -6
- data/bridge/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +4 -4
- data/bridge/sdk-core/core/src/worker/workflow/managed_run.rs +13 -5
- data/bridge/sdk-core/core/src/worker/workflow/mod.rs +86 -29
- data/bridge/sdk-core/core/src/worker/workflow/wft_poller.rs +2 -2
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream.rs +56 -11
- data/bridge/sdk-core/core-api/Cargo.toml +4 -3
- data/bridge/sdk-core/core-api/src/lib.rs +1 -43
- data/bridge/sdk-core/core-api/src/telemetry.rs +147 -0
- data/bridge/sdk-core/core-api/src/worker.rs +13 -0
- data/bridge/sdk-core/etc/deps.svg +115 -140
- data/bridge/sdk-core/etc/regen-depgraph.sh +5 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +1 -1
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-23_history.bin +0 -0
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-85_history.bin +0 -0
- data/bridge/sdk-core/protos/api_upstream/buf.yaml +0 -3
- data/bridge/sdk-core/protos/api_upstream/build/go.mod +7 -0
- data/bridge/sdk-core/protos/api_upstream/build/go.sum +5 -0
- data/bridge/sdk-core/protos/api_upstream/{temporal/api/update/v1/message.proto → build/tools.go} +6 -23
- data/bridge/sdk-core/protos/api_upstream/go.mod +6 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +12 -9
- data/bridge/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +20 -19
- data/bridge/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +3 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +4 -4
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +3 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +5 -3
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +23 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/{cluster.proto → interaction_type.proto} +10 -11
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +2 -13
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +26 -19
- data/bridge/sdk-core/protos/api_upstream/temporal/api/interaction/v1/message.proto +87 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +21 -61
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +2 -21
- data/bridge/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +110 -31
- data/bridge/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +4 -4
- data/bridge/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +2 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +3 -2
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +60 -16
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +17 -3
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +2 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +8 -1
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +2 -2
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +2 -2
- data/bridge/sdk-core/sdk/Cargo.toml +2 -2
- data/bridge/sdk-core/sdk/src/interceptors.rs +36 -3
- data/bridge/sdk-core/sdk/src/lib.rs +7 -5
- data/bridge/sdk-core/sdk/src/workflow_context.rs +13 -2
- data/bridge/sdk-core/sdk/src/workflow_future.rs +3 -7
- data/bridge/sdk-core/sdk-core-protos/Cargo.toml +1 -1
- data/bridge/sdk-core/sdk-core-protos/build.rs +0 -1
- data/bridge/sdk-core/sdk-core-protos/src/history_builder.rs +65 -18
- data/bridge/sdk-core/sdk-core-protos/src/history_info.rs +22 -22
- data/bridge/sdk-core/sdk-core-protos/src/lib.rs +104 -44
- data/bridge/sdk-core/test-utils/Cargo.toml +2 -1
- data/bridge/sdk-core/test-utils/src/lib.rs +81 -29
- data/bridge/sdk-core/tests/integ_tests/heartbeat_tests.rs +5 -2
- data/bridge/sdk-core/tests/integ_tests/metrics_tests.rs +37 -0
- data/bridge/sdk-core/tests/integ_tests/polling_tests.rs +0 -13
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +167 -13
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +53 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/replay.rs +106 -20
- data/bridge/sdk-core/tests/integ_tests/workflow_tests.rs +18 -8
- data/bridge/sdk-core/tests/main.rs +6 -4
- data/bridge/src/connection.rs +81 -62
- data/bridge/src/lib.rs +92 -33
- data/bridge/src/runtime.rs +9 -2
- data/bridge/src/worker.rs +53 -2
- data/lib/bridge.so +0 -0
- data/lib/gen/temporal/api/batch/v1/message_pb.rb +8 -6
- data/lib/gen/temporal/api/command/v1/message_pb.rb +17 -9
- data/lib/gen/temporal/api/common/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/batch_operation_pb.rb +2 -1
- data/lib/gen/temporal/api/enums/v1/command_type_pb.rb +3 -1
- data/lib/gen/temporal/api/enums/v1/common_pb.rb +2 -1
- data/lib/gen/temporal/api/enums/v1/event_type_pb.rb +3 -2
- data/lib/gen/temporal/api/enums/v1/failed_cause_pb.rb +7 -1
- data/lib/gen/temporal/api/enums/v1/interaction_type_pb.rb +25 -0
- data/lib/gen/temporal/api/enums/v1/namespace_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/query_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/reset_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/schedule_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/task_queue_pb.rb +1 -1
- data/lib/gen/temporal/api/enums/v1/update_pb.rb +1 -6
- data/lib/gen/temporal/api/enums/v1/workflow_pb.rb +1 -1
- data/lib/gen/temporal/api/errordetails/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/failure/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/filter/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/history/v1/message_pb.rb +19 -18
- data/lib/gen/temporal/api/interaction/v1/message_pb.rb +49 -0
- data/lib/gen/temporal/api/namespace/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/operatorservice/v1/request_response_pb.rb +11 -51
- data/lib/gen/temporal/api/operatorservice/v1/service_pb.rb +1 -1
- data/lib/gen/temporal/api/query/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/replication/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/schedule/v1/message_pb.rb +22 -1
- data/lib/gen/temporal/api/taskqueue/v1/message_pb.rb +2 -2
- data/lib/gen/temporal/api/version/v1/message_pb.rb +1 -1
- data/lib/gen/temporal/api/workflow/v1/message_pb.rb +2 -1
- data/lib/gen/temporal/api/workflowservice/v1/request_response_pb.rb +27 -10
- data/lib/gen/temporal/api/workflowservice/v1/service_pb.rb +1 -1
- data/lib/gen/temporal/sdk/core/workflow_activation/workflow_activation_pb.rb +1 -0
- data/lib/gen/temporal/sdk/core/workflow_commands/workflow_commands_pb.rb +5 -1
- data/lib/temporalio/activity/context.rb +97 -0
- data/lib/temporalio/activity/info.rb +67 -0
- data/lib/temporalio/activity.rb +85 -0
- data/lib/temporalio/bridge/error.rb +8 -0
- data/lib/temporalio/bridge.rb +14 -0
- data/lib/{temporal → temporalio}/client/implementation.rb +49 -48
- data/lib/{temporal → temporalio}/client/workflow_handle.rb +35 -35
- data/lib/{temporal → temporalio}/client.rb +19 -32
- data/lib/{temporal → temporalio}/connection.rb +238 -223
- data/lib/{temporal → temporalio}/data_converter.rb +76 -35
- data/lib/{temporal → temporalio}/error/failure.rb +6 -6
- data/lib/{temporal → temporalio}/error/workflow_failure.rb +4 -2
- data/lib/{temporal → temporalio}/errors.rb +19 -1
- data/lib/{temporal → temporalio}/failure_converter/base.rb +5 -5
- data/lib/{temporal → temporalio}/failure_converter/basic.rb +58 -52
- data/lib/temporalio/failure_converter.rb +7 -0
- data/lib/{temporal → temporalio}/interceptor/chain.rb +2 -1
- data/lib/{temporal → temporalio}/interceptor/client.rb +22 -1
- data/lib/{temporal → temporalio}/payload_codec/base.rb +5 -5
- data/lib/{temporal → temporalio}/payload_converter/base.rb +3 -3
- data/lib/{temporal → temporalio}/payload_converter/bytes.rb +4 -3
- data/lib/{temporal → temporalio}/payload_converter/composite.rb +7 -5
- data/lib/{temporal → temporalio}/payload_converter/encoding_base.rb +4 -4
- data/lib/{temporal → temporalio}/payload_converter/json.rb +4 -3
- data/lib/{temporal → temporalio}/payload_converter/nil.rb +4 -3
- data/lib/temporalio/payload_converter.rb +14 -0
- data/lib/{temporal → temporalio}/retry_policy.rb +4 -4
- data/lib/{temporal → temporalio}/retry_state.rb +1 -1
- data/lib/temporalio/runtime.rb +25 -0
- data/lib/{temporal → temporalio}/timeout_type.rb +2 -2
- data/lib/temporalio/version.rb +3 -0
- data/lib/temporalio/worker/activity_runner.rb +92 -0
- data/lib/temporalio/worker/activity_worker.rb +138 -0
- data/lib/temporalio/worker/reactor.rb +46 -0
- data/lib/temporalio/worker/runner.rb +63 -0
- data/lib/temporalio/worker/sync_worker.rb +88 -0
- data/lib/temporalio/worker/thread_pool_executor.rb +51 -0
- data/lib/temporalio/worker.rb +198 -0
- data/lib/{temporal → temporalio}/workflow/execution_info.rb +4 -4
- data/lib/{temporal → temporalio}/workflow/execution_status.rb +1 -1
- data/lib/{temporal → temporalio}/workflow/id_reuse_policy.rb +6 -6
- data/lib/{temporal → temporalio}/workflow/query_reject_condition.rb +5 -5
- data/lib/temporalio.rb +12 -3
- data/temporalio.gemspec +7 -3
- metadata +79 -56
- data/bridge/sdk-core/bridge-ffi/Cargo.toml +0 -24
- data/bridge/sdk-core/bridge-ffi/LICENSE.txt +0 -23
- data/bridge/sdk-core/bridge-ffi/build.rs +0 -25
- data/bridge/sdk-core/bridge-ffi/include/sdk-core-bridge.h +0 -249
- data/bridge/sdk-core/bridge-ffi/src/lib.rs +0 -825
- data/bridge/sdk-core/bridge-ffi/src/wrappers.rs +0 -211
- data/bridge/sdk-core/core/src/log_export.rs +0 -62
- data/bridge/sdk-core/core/src/worker/workflow/machines/mutable_side_effect_state_machine.rs +0 -127
- data/bridge/sdk-core/core/src/worker/workflow/machines/side_effect_state_machine.rs +0 -71
- data/bridge/sdk-core/protos/api_upstream/temporal/api/cluster/v1/message.proto +0 -83
- data/bridge/sdk-core/protos/local/temporal/sdk/core/bridge/bridge.proto +0 -210
- data/bridge/sdk-core/sdk/src/conversions.rs +0 -8
- data/lib/gen/temporal/api/cluster/v1/message_pb.rb +0 -67
- data/lib/gen/temporal/api/enums/v1/cluster_pb.rb +0 -26
- data/lib/gen/temporal/api/update/v1/message_pb.rb +0 -26
- data/lib/temporal/bridge.rb +0 -14
- data/lib/temporal/failure_converter.rb +0 -8
- data/lib/temporal/payload_converter.rb +0 -14
- data/lib/temporal/runtime.rb +0 -22
- data/lib/temporal/version.rb +0 -3
- data/lib/temporal.rb +0 -8
|
@@ -1,210 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package coresdk.bridge;
|
|
4
|
-
|
|
5
|
-
import "google/protobuf/duration.proto";
|
|
6
|
-
import "google/protobuf/timestamp.proto";
|
|
7
|
-
import "google/protobuf/wrappers.proto";
|
|
8
|
-
import "temporal/sdk/core/core_interface.proto";
|
|
9
|
-
import "temporal/sdk/core/activity_task/activity_task.proto";
|
|
10
|
-
import "temporal/sdk/core/workflow_activation/workflow_activation.proto";
|
|
11
|
-
import "temporal/sdk/core/workflow_completion/workflow_completion.proto";
|
|
12
|
-
|
|
13
|
-
enum LogLevel {
|
|
14
|
-
LOG_LEVEL_UNSPECIFIED = 0;
|
|
15
|
-
OFF = 1;
|
|
16
|
-
ERROR = 2;
|
|
17
|
-
WARN = 3;
|
|
18
|
-
INFO = 4;
|
|
19
|
-
DEBUG = 5;
|
|
20
|
-
TRACE = 6;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
message InitTelemetryRequest {
|
|
24
|
-
string tracing_filter = 1;
|
|
25
|
-
oneof logging {
|
|
26
|
-
ConsoleLoggerOptions console = 2;
|
|
27
|
-
ForwardLoggerOptions forward = 3;
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
oneof tracing {
|
|
31
|
-
OtelCollectorOptions otel_tracing = 4;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
oneof metrics {
|
|
35
|
-
OtelCollectorOptions otel_metrics = 5;
|
|
36
|
-
PrometheusOptions prometheus = 6;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
message ConsoleLoggerOptions {}
|
|
40
|
-
message ForwardLoggerOptions {
|
|
41
|
-
LogLevel level = 1;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
message OtelCollectorOptions {
|
|
45
|
-
string url = 1;
|
|
46
|
-
map<string, string> headers = 2;
|
|
47
|
-
}
|
|
48
|
-
message PrometheusOptions {
|
|
49
|
-
string export_bind_address = 1;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
message CreateClientRequest {
|
|
54
|
-
string target_url = 1;
|
|
55
|
-
string namespace = 2;
|
|
56
|
-
string client_name = 3;
|
|
57
|
-
string client_version = 4;
|
|
58
|
-
string identity = 6;
|
|
59
|
-
TlsConfig tls_config = 8;
|
|
60
|
-
RetryConfig retry_config = 9;
|
|
61
|
-
|
|
62
|
-
message TlsConfig {
|
|
63
|
-
bytes server_root_ca_cert = 1;
|
|
64
|
-
string domain = 2;
|
|
65
|
-
bytes client_cert = 3;
|
|
66
|
-
bytes client_private_key = 4;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
message RetryConfig {
|
|
70
|
-
google.protobuf.Duration initial_interval = 1;
|
|
71
|
-
google.protobuf.DoubleValue randomization_factor = 2;
|
|
72
|
-
google.protobuf.DoubleValue multiplier = 3;
|
|
73
|
-
google.protobuf.Duration max_interval = 4;
|
|
74
|
-
google.protobuf.Duration max_elapsed_time = 5;
|
|
75
|
-
google.protobuf.UInt32Value max_retries = 6;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
message InitResponse {
|
|
80
|
-
Error error = 1;
|
|
81
|
-
|
|
82
|
-
message Error {
|
|
83
|
-
string message = 1;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
message CreateWorkerRequest {
|
|
88
|
-
string task_queue = 1;
|
|
89
|
-
google.protobuf.UInt32Value max_cached_workflows = 2;
|
|
90
|
-
google.protobuf.UInt32Value max_outstanding_workflow_tasks = 3;
|
|
91
|
-
google.protobuf.UInt32Value max_outstanding_activities = 4;
|
|
92
|
-
google.protobuf.UInt32Value max_outstanding_local_activities = 5;
|
|
93
|
-
google.protobuf.UInt32Value max_concurrent_wft_polls = 6;
|
|
94
|
-
google.protobuf.FloatValue nonsticky_to_sticky_poll_ratio = 7;
|
|
95
|
-
google.protobuf.UInt32Value max_concurrent_at_polls = 8;
|
|
96
|
-
bool no_remote_activities = 9;
|
|
97
|
-
google.protobuf.Duration sticky_queue_schedule_to_start_timeout = 10;
|
|
98
|
-
google.protobuf.Duration max_heartbeat_throttle_interval = 11;
|
|
99
|
-
google.protobuf.Duration default_heartbeat_throttle_interval = 12;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
message RegisterWorkerResponse {
|
|
103
|
-
Error error = 1;
|
|
104
|
-
|
|
105
|
-
message Error {
|
|
106
|
-
string message = 1;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
message PollWorkflowActivationRequest {
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
message PollWorkflowActivationResponse {
|
|
114
|
-
oneof response {
|
|
115
|
-
coresdk.workflow_activation.WorkflowActivation activation = 1;
|
|
116
|
-
Error error = 2;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
message Error {
|
|
120
|
-
string message = 1;
|
|
121
|
-
bool shutdown = 2;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
message PollActivityTaskRequest {
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
message PollActivityTaskResponse {
|
|
129
|
-
oneof response {
|
|
130
|
-
coresdk.activity_task.ActivityTask task = 1;
|
|
131
|
-
Error error = 2;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
message Error {
|
|
135
|
-
string message = 1;
|
|
136
|
-
bool shutdown = 2;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
message CompleteWorkflowActivationRequest {
|
|
141
|
-
coresdk.workflow_completion.WorkflowActivationCompletion completion = 1;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
message CompleteWorkflowActivationResponse {
|
|
145
|
-
Error error = 1;
|
|
146
|
-
|
|
147
|
-
message Error {
|
|
148
|
-
string message = 1;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
message CompleteActivityTaskRequest {
|
|
153
|
-
coresdk.ActivityTaskCompletion completion = 1;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
message CompleteActivityTaskResponse {
|
|
157
|
-
Error error = 1;
|
|
158
|
-
|
|
159
|
-
message Error {
|
|
160
|
-
string message = 1;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
message RecordActivityHeartbeatRequest {
|
|
165
|
-
coresdk.ActivityHeartbeat heartbeat = 1;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
message RecordActivityHeartbeatResponse {
|
|
169
|
-
Error error = 1;
|
|
170
|
-
|
|
171
|
-
message Error {
|
|
172
|
-
string message = 1;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
message RequestWorkflowEvictionRequest {
|
|
177
|
-
string run_id = 1;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
message RequestWorkflowEvictionResponse {
|
|
181
|
-
Error error = 1;
|
|
182
|
-
|
|
183
|
-
message Error {
|
|
184
|
-
string message = 1;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
message ShutdownWorkerRequest {
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
message ShutdownWorkerResponse {
|
|
192
|
-
Error error = 1;
|
|
193
|
-
|
|
194
|
-
message Error {
|
|
195
|
-
string message = 1;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
message FetchBufferedLogsRequest {
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
message FetchBufferedLogsResponse {
|
|
203
|
-
repeated LogEntry entries = 1;
|
|
204
|
-
|
|
205
|
-
message LogEntry {
|
|
206
|
-
string message = 1;
|
|
207
|
-
google.protobuf.Timestamp timestamp = 2;
|
|
208
|
-
LogLevel level = 3;
|
|
209
|
-
}
|
|
210
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
-
# source: temporal/api/cluster/v1/message.proto
|
|
3
|
-
|
|
4
|
-
require 'google/protobuf'
|
|
5
|
-
|
|
6
|
-
require 'dependencies/gogoproto/gogo_pb'
|
|
7
|
-
require 'google/protobuf/timestamp_pb'
|
|
8
|
-
require 'temporal/api/enums/v1/cluster_pb'
|
|
9
|
-
require 'temporal/api/enums/v1/common_pb'
|
|
10
|
-
require 'temporal/api/version/v1/message_pb'
|
|
11
|
-
|
|
12
|
-
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
13
|
-
add_file("temporal/api/cluster/v1/message.proto", :syntax => :proto3) do
|
|
14
|
-
add_message "temporal.api.cluster.v1.ClusterMetadata" do
|
|
15
|
-
optional :cluster, :string, 1
|
|
16
|
-
optional :history_shard_count, :int32, 2
|
|
17
|
-
optional :cluster_id, :string, 3
|
|
18
|
-
optional :version_info, :message, 4, "temporal.api.version.v1.VersionInfo"
|
|
19
|
-
map :index_search_attributes, :string, :message, 5, "temporal.api.cluster.v1.IndexSearchAttributes"
|
|
20
|
-
optional :cluster_address, :string, 6
|
|
21
|
-
optional :failover_version_increment, :int64, 7
|
|
22
|
-
optional :initial_failover_version, :int64, 8
|
|
23
|
-
optional :is_global_namespace_enabled, :bool, 9
|
|
24
|
-
optional :is_connection_enabled, :bool, 10
|
|
25
|
-
end
|
|
26
|
-
add_message "temporal.api.cluster.v1.IndexSearchAttributes" do
|
|
27
|
-
map :custom_search_attributes, :string, :enum, 1, "temporal.api.enums.v1.IndexedValueType"
|
|
28
|
-
end
|
|
29
|
-
add_message "temporal.api.cluster.v1.HostInfo" do
|
|
30
|
-
optional :identity, :string, 1
|
|
31
|
-
end
|
|
32
|
-
add_message "temporal.api.cluster.v1.RingInfo" do
|
|
33
|
-
optional :role, :string, 1
|
|
34
|
-
optional :member_count, :int32, 2
|
|
35
|
-
repeated :members, :message, 3, "temporal.api.cluster.v1.HostInfo"
|
|
36
|
-
end
|
|
37
|
-
add_message "temporal.api.cluster.v1.MembershipInfo" do
|
|
38
|
-
optional :current_host, :message, 1, "temporal.api.cluster.v1.HostInfo"
|
|
39
|
-
repeated :reachable_members, :string, 2
|
|
40
|
-
repeated :rings, :message, 3, "temporal.api.cluster.v1.RingInfo"
|
|
41
|
-
end
|
|
42
|
-
add_message "temporal.api.cluster.v1.ClusterMember" do
|
|
43
|
-
optional :role, :enum, 1, "temporal.api.enums.v1.ClusterMemberRole"
|
|
44
|
-
optional :host_id, :string, 2
|
|
45
|
-
optional :rpc_address, :string, 3
|
|
46
|
-
optional :rpc_port, :int32, 4
|
|
47
|
-
optional :session_start_time, :message, 5, "google.protobuf.Timestamp"
|
|
48
|
-
optional :last_heartbit_time, :message, 6, "google.protobuf.Timestamp"
|
|
49
|
-
optional :record_expiry_time, :message, 7, "google.protobuf.Timestamp"
|
|
50
|
-
end
|
|
51
|
-
end
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
module Temporal
|
|
55
|
-
module Api
|
|
56
|
-
module Cluster
|
|
57
|
-
module V1
|
|
58
|
-
ClusterMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.ClusterMetadata").msgclass
|
|
59
|
-
IndexSearchAttributes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.IndexSearchAttributes").msgclass
|
|
60
|
-
HostInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.HostInfo").msgclass
|
|
61
|
-
RingInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.RingInfo").msgclass
|
|
62
|
-
MembershipInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.MembershipInfo").msgclass
|
|
63
|
-
ClusterMember = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.cluster.v1.ClusterMember").msgclass
|
|
64
|
-
end
|
|
65
|
-
end
|
|
66
|
-
end
|
|
67
|
-
end
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
-
# source: temporal/api/enums/v1/cluster.proto
|
|
3
|
-
|
|
4
|
-
require 'google/protobuf'
|
|
5
|
-
|
|
6
|
-
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
7
|
-
add_file("temporal/api/enums/v1/cluster.proto", :syntax => :proto3) do
|
|
8
|
-
add_enum "temporal.api.enums.v1.ClusterMemberRole" do
|
|
9
|
-
value :CLUSTER_MEMBER_ROLE_UNSPECIFIED, 0
|
|
10
|
-
value :CLUSTER_MEMBER_ROLE_FRONTEND, 1
|
|
11
|
-
value :CLUSTER_MEMBER_ROLE_HISTORY, 2
|
|
12
|
-
value :CLUSTER_MEMBER_ROLE_MATCHING, 3
|
|
13
|
-
value :CLUSTER_MEMBER_ROLE_WORKER, 4
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
module Temporal
|
|
19
|
-
module Api
|
|
20
|
-
module Enums
|
|
21
|
-
module V1
|
|
22
|
-
ClusterMemberRole = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.enums.v1.ClusterMemberRole").enummodule
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
-
# source: temporal/api/update/v1/message.proto
|
|
3
|
-
|
|
4
|
-
require 'google/protobuf'
|
|
5
|
-
|
|
6
|
-
require 'temporal/api/common/v1/message_pb'
|
|
7
|
-
|
|
8
|
-
Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
9
|
-
add_file("temporal/api/update/v1/message.proto", :syntax => :proto3) do
|
|
10
|
-
add_message "temporal.api.update.v1.WorkflowUpdate" do
|
|
11
|
-
optional :header, :message, 1, "temporal.api.common.v1.Header"
|
|
12
|
-
optional :name, :string, 2
|
|
13
|
-
optional :args, :message, 3, "temporal.api.common.v1.Payloads"
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
module Temporal
|
|
19
|
-
module Api
|
|
20
|
-
module Update
|
|
21
|
-
module V1
|
|
22
|
-
WorkflowUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("temporal.api.update.v1.WorkflowUpdate").msgclass
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
end
|
data/lib/temporal/bridge.rb
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
require 'rutie'
|
|
2
|
-
|
|
3
|
-
BRIDGE_DIR = File.expand_path('..', __dir__)
|
|
4
|
-
|
|
5
|
-
module Temporal
|
|
6
|
-
module Bridge
|
|
7
|
-
# TODO: Expand this into more specific error types
|
|
8
|
-
class Error < StandardError; end
|
|
9
|
-
|
|
10
|
-
Rutie
|
|
11
|
-
.new(:bridge, lib_path: '', lib_suffix: 'so', lib_prefix: '')
|
|
12
|
-
.init('init_bridge', BRIDGE_DIR)
|
|
13
|
-
end
|
|
14
|
-
end
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
require 'temporal/payload_converter/bytes'
|
|
2
|
-
require 'temporal/payload_converter/composite'
|
|
3
|
-
require 'temporal/payload_converter/json'
|
|
4
|
-
require 'temporal/payload_converter/nil'
|
|
5
|
-
|
|
6
|
-
module Temporal
|
|
7
|
-
module PayloadConverter
|
|
8
|
-
DEFAULT = Temporal::PayloadConverter::Composite.new(
|
|
9
|
-
Temporal::PayloadConverter::Nil.new,
|
|
10
|
-
Temporal::PayloadConverter::Bytes.new,
|
|
11
|
-
Temporal::PayloadConverter::JSON.new,
|
|
12
|
-
)
|
|
13
|
-
end
|
|
14
|
-
end
|
data/lib/temporal/runtime.rb
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
require 'singleton'
|
|
2
|
-
require 'temporal/bridge'
|
|
3
|
-
|
|
4
|
-
module Temporal
|
|
5
|
-
class Runtime
|
|
6
|
-
include Singleton
|
|
7
|
-
|
|
8
|
-
attr_reader :core_runtime
|
|
9
|
-
|
|
10
|
-
def initialize
|
|
11
|
-
@core_runtime = Temporal::Bridge::Runtime.init
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
def ensure_callback_loop
|
|
15
|
-
return if @thread
|
|
16
|
-
|
|
17
|
-
@thread = Thread.new do
|
|
18
|
-
core_runtime.run_callback_loop
|
|
19
|
-
end
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
end
|
data/lib/temporal/version.rb
DELETED