Skip to content

Commit 48617a9

Browse files
Update core/src/main/scala/com/microsoft/azure/synapse/ml/io/http/HTTPTransformer.scala
Co-authored-by: Copilot <[email protected]>
1 parent 01c7238 commit 48617a9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/main/scala/com/microsoft/azure/synapse/ml/io/http/HTTPTransformer.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ trait ConcurrencyParams extends Wrappable {
7070
def setConnectionTimeout(value: Double): this.type = set(connectionTimeout, value)
7171

7272
val timeout: Param[Double] = new DoubleParam(
73-
this, "timeout", "number of seconds to wait for the entire operation to complete")
73+
this, "timeout",
74+
"number of seconds for the entire DataFrame transformation to complete, measured from the start of the transform operation; " +
75+
"rows processed after this timeout will receive HTTP 408 responses without making API calls")
7476

7577
/** @group getParam */
7678
def getTimeout: Double = $(timeout)

0 commit comments

Comments
 (0)