uranusjr commented on code in PR #69125: URL: https://github.com/apache/airflow/pull/69125#discussion_r3509983074
########## java-sdk/sdk/src/main/kotlin/org/apache/airflow/sdk/execution/Comm.kt: ########## @@ -23,23 +23,70 @@ import io.ktor.utils.io.ByteReadChannel import io.ktor.utils.io.ByteWriteChannel import io.ktor.utils.io.readByteArray import io.ktor.utils.io.writeByteArray +import kotlinx.coroutines.CancellationException +import kotlinx.coroutines.Job +import kotlinx.coroutines.currentCoroutineContext +import kotlinx.coroutines.ensureActive +import kotlinx.coroutines.runBlocking import org.apache.airflow.sdk.ApiError import org.apache.airflow.sdk.Bundle import org.apache.airflow.sdk.execution.comm.ErrorResponse import org.apache.airflow.sdk.execution.comm.StartupDetails +import org.msgpack.core.buffer.MessageBuffer +import org.msgpack.core.buffer.MessageBufferInput +import java.io.IOException import kotlin.concurrent.atomics.AtomicInt import kotlin.concurrent.atomics.ExperimentalAtomicApi +import kotlin.coroutines.CoroutineContext +import kotlin.coroutines.EmptyCoroutineContext + +/** + * A [MessageBufferInput] that feeds a MessageUnpacker in chunks. + * + * Exactly [declaredLength] bytes is fed from [reader] in each chunk. + * Heap use is bounded by [CHUNK_SIZE], so a frame larger than Review Comment: added -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
