diff --git a/datanode/pom.xml b/datanode/pom.xml
index 438f8fd4..52d55127 100644
--- a/datanode/pom.xml
+++ b/datanode/pom.xml
@@ -80,7 +80,7 @@
com.odysseusinc.arachne
execution-engine-commons
- 2.3
+ 2.6.0
arachne-sys-settings
diff --git a/datanode/src/main/java/com/odysseusinc/arachne/datanode/controller/analysis/AnalysisController.java b/datanode/src/main/java/com/odysseusinc/arachne/datanode/controller/analysis/AnalysisController.java
index 96b3e281..ca6c0940 100644
--- a/datanode/src/main/java/com/odysseusinc/arachne/datanode/controller/analysis/AnalysisController.java
+++ b/datanode/src/main/java/com/odysseusinc/arachne/datanode/controller/analysis/AnalysisController.java
@@ -92,7 +92,7 @@ public UploadDTO uploadFiles(Principal principal, @RequestPart("file") List execute(Principal principal, String id, @Valid @RequestBody AnalysisRequestDTO request) {
User user = userService.getUser(principal);
return analysisService.run(user, request, id);
diff --git a/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/GsonConverter.java b/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/GsonConverter.java
new file mode 100644
index 00000000..d75fbf99
--- /dev/null
+++ b/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/GsonConverter.java
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2024 Odysseus Data Services, Inc.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.odysseusinc.arachne.datanode.converter;
+
+import com.google.gson.Gson;
+import com.google.gson.reflect.TypeToken;
+import lombok.extern.slf4j.Slf4j;
+
+import javax.persistence.AttributeConverter;
+import java.lang.reflect.Type;
+
+@Slf4j
+public abstract class GsonConverter implements AttributeConverter {
+ private static final Gson GSON = new Gson();
+
+ private final Type type;
+
+ public GsonConverter(TypeToken type) {
+ this.type = type.getType();
+ }
+
+ @Override
+ public String convertToDatabaseColumn(T value) {
+ return GSON.toJson(value, type);
+ }
+
+ @Override
+ public T convertToEntityAttribute(String field) {
+ return GSON.fromJson(field, type);
+ }
+}
diff --git a/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/StringMapConverter.java b/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/StringMapConverter.java
new file mode 100644
index 00000000..dcc2a4b1
--- /dev/null
+++ b/datanode/src/main/java/com/odysseusinc/arachne/datanode/converter/StringMapConverter.java
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2024 Odysseus Data Services, Inc.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.odysseusinc.arachne.datanode.converter;
+
+import com.google.gson.reflect.TypeToken;
+
+import java.util.Map;
+
+public class StringMapConverter extends GsonConverter