Skip to content

Commit 0ed373a

Browse files
authored
add log and metrics on TBase message dataconverter usage (#986)
What changed? Add warning logging on TBase messages Why? In V4, we are going to deprecate TBase message support. Adding extra visibility would help users easily identify existing use cases. #985
1 parent b0f0a7e commit 0ed373a

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

src/main/java/com/uber/cadence/converter/JsonDataConverter.java

+12-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.google.gson.reflect.TypeToken;
2929
import com.google.gson.stream.JsonReader;
3030
import com.google.gson.stream.JsonWriter;
31+
import com.uber.m3.tally.Scope;
3132
import java.io.IOException;
3233
import java.lang.reflect.Type;
3334
import java.nio.charset.StandardCharsets;
@@ -48,12 +49,22 @@ public final class JsonDataConverter implements DataConverter {
4849
private static final String TYPE_FIELD_NAME = "type";
4950
private static final String JSON_CONVERTER_TYPE = "JSON";
5051
private static final String CLASS_NAME_FIELD_NAME = "className";
52+
private static Scope metricsScope;
5153
private final Gson gson;
5254

5355
public static DataConverter getInstance() {
5456
return INSTANCE;
5557
}
5658

59+
/**
60+
* Used to set the metrics scope for this class.
61+
*
62+
* @param metricsScope metrics scope to set
63+
*/
64+
public static void setMetricsScope(Scope metricsScope) {
65+
JsonDataConverter.metricsScope = metricsScope;
66+
}
67+
5768
private JsonDataConverter() {
5869
this((b) -> b);
5970
}
@@ -68,7 +79,7 @@ public JsonDataConverter(Function<GsonBuilder, GsonBuilder> builderInterceptor)
6879
new GsonBuilder()
6980
.serializeNulls()
7081
.registerTypeAdapterFactory(new ThrowableTypeAdapterFactory())
71-
.registerTypeAdapterFactory(new TBaseTypeAdapterFactory())
82+
.registerTypeAdapterFactory(new TBaseTypeAdapterFactory(metricsScope))
7283
.registerTypeAdapterFactory(new TEnumTypeAdapterFactory());
7384
GsonBuilder intercepted = builderInterceptor.apply(gsonBuilder);
7485
gson = intercepted.create();

src/main/java/com/uber/cadence/converter/TBaseTypeAdapterFactory.java

+22
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,30 @@
2323
import com.google.gson.reflect.TypeToken;
2424
import com.google.gson.stream.JsonReader;
2525
import com.google.gson.stream.JsonWriter;
26+
import com.uber.m3.tally.Scope;
2627
import java.io.IOException;
2728
import java.nio.charset.StandardCharsets;
2829
import org.apache.thrift.TBase;
2930
import org.apache.thrift.TDeserializer;
3031
import org.apache.thrift.TException;
3132
import org.apache.thrift.TSerializer;
3233
import org.apache.thrift.protocol.TJSONProtocol;
34+
import org.slf4j.Logger;
35+
import org.slf4j.LoggerFactory;
3336

3437
/**
3538
* Special handling of TBase message serialization and deserialization. This is to support for
3639
* inline Thrift fields in Java class.
3740
*/
3841
public class TBaseTypeAdapterFactory implements TypeAdapterFactory {
3942

43+
private static final Logger logger = LoggerFactory.getLogger(TBaseTypeAdapterFactory.class);
44+
private final Scope metricsScope;
45+
46+
public TBaseTypeAdapterFactory(Scope metricsScope) {
47+
this.metricsScope = metricsScope;
48+
}
49+
4050
@Override
4151
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> typeToken) {
4252
// this class only serializes 'TBase' and its subtypes
@@ -47,19 +57,31 @@ public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> typeToken) {
4757
new TypeAdapter<T>() {
4858
@Override
4959
public void write(JsonWriter jsonWriter, T value) throws IOException {
60+
if (metricsScope != null) {
61+
metricsScope.counter("tbase_message_write").inc(1);
62+
}
5063
try {
5164
String result =
5265
newThriftSerializer().toString((TBase) value, StandardCharsets.UTF_8.name());
5366
jsonWriter.value(result);
67+
logger.warn(
68+
"TBase message will no longer be support in cadence-java-client V4, payload {}",
69+
result);
5470
} catch (TException e) {
5571
throw new DataConverterException("Failed to serialize TBase", e);
5672
}
5773
}
5874

5975
@Override
6076
public T read(JsonReader jsonReader) throws IOException {
77+
if (metricsScope != null) {
78+
metricsScope.counter("tbase_message_read").inc(1);
79+
}
6180
String value = jsonReader.nextString();
6281
try {
82+
logger.warn(
83+
"TBase message will no longer be support in cadence-java-client V4, payload {}",
84+
value);
6385
@SuppressWarnings("unchecked")
6486
T instance = (T) typeToken.getRawType().getConstructor().newInstance();
6587
newThriftDeserializer()

src/main/java/com/uber/cadence/worker/WorkerFactory.java

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import com.uber.cadence.PollForDecisionTaskResponse;
2525
import com.uber.cadence.client.WorkflowClient;
2626
import com.uber.cadence.converter.DataConverter;
27+
import com.uber.cadence.converter.JsonDataConverter;
2728
import com.uber.cadence.internal.common.InternalUtils;
2829
import com.uber.cadence.internal.metrics.MetricsTag;
2930
import com.uber.cadence.internal.replay.DeciderCache;
@@ -107,6 +108,9 @@ public WorkerFactory(WorkflowClient workflowClient, WorkerFactoryOptions factory
107108
return;
108109
}
109110

111+
// initialize the JsonDataConverter with the metrics scope
112+
JsonDataConverter.setMetricsScope(workflowClient.getOptions().getMetricsScope());
113+
110114
Scope stickyScope =
111115
workflowClient
112116
.getOptions()

0 commit comments

Comments
 (0)