Skip to content

Commit 7c78ea5

Browse files
authored
Add inference logging option (#122)
## What is the goal of this PR? Add an option that allows users to turn on or off resolution tracing for reasoner. ## What are the changes implemented in this PR? - Inference tracing is intended to be set to true only when parallel is set to false.
1 parent b63c9b9 commit 7c78ea5

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

protobuf/options.proto

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,25 @@ message Options {
2929
oneof infer_opt {
3030
bool infer = 1;
3131
}
32+
oneof trace_inference_opt {
33+
bool trace_inference = 2;
34+
}
3235
oneof explain_opt {
33-
bool explain = 2;
36+
bool explain = 3;
3437
}
3538
oneof batch_size_opt {
36-
int32 batch_size = 3;
39+
int32 batch_size = 4;
3740
}
3841
oneof prefetch_opt {
39-
bool prefetch = 4;
42+
bool prefetch = 5;
4043
}
4144
oneof session_idle_timeout_opt {
42-
int32 session_idle_timeout_millis = 5;
45+
int32 session_idle_timeout_millis = 6;
4346
}
4447
oneof schema_lock_acquire_timeout_opt {
45-
int32 schema_lock_acquire_timeout_millis = 6;
48+
int32 schema_lock_acquire_timeout_millis = 7;
4649
}
4750
oneof read_any_replica_opt {
48-
bool read_any_replica = 7;
51+
bool read_any_replica = 8;
4952
}
5053
}

0 commit comments

Comments
 (0)