We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225487a commit 223b962Copy full SHA for 223b962
1 file changed
Dockerfile
@@ -31,7 +31,12 @@ ENV FUNCTION_COMMAND="python"
31
# Args to start the evaluation function with
32
ENV FUNCTION_ARGS="-m,evaluation_function.main"
33
34
-# The transport to use for the RPC server
35
-ENV FUNCTION_RPC_TRANSPORT="ipc"
+# # The transport to use for the RPC server
+# ENV FUNCTION_RPC_TRANSPORT="ipc"
36
+
37
+# Use file-based communication interface instead of RPC
38
+# This handles larger payloads better (shimmy writes input to file, reads output from file)
39
+# shimmy will append input/output file paths as the last two arguments
40
+ENV FUNCTION_INTERFACE="file"
41
42
ENV LOG_LEVEL="debug"
0 commit comments