final class ProcessCallable extends GeneratedMessage with ProcessCallableOrBuilder
Protobuf type org.apache.spark.udf.worker.ProcessCallable
- Annotations
- @Generated()
- Source
- ProcessCallable.java
- Alphabetic
- By Inheritance
- ProcessCallable
- ProcessCallableOrBuilder
- GeneratedMessage
- Serializable
- AbstractMessage
- Message
- MessageOrBuilder
- AbstractMessageLite
- MessageLite
- MessageLiteOrBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def containsEnvironmentVariables(key: String): Boolean
Environment variables for the invoked process. (Optional)
Environment variables for the invoked process. (Optional)
map<string, string> environment_variables = 3;- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- Annotations
- @Override()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: AnyRef): Boolean
- Definition Classes
- ProcessCallable → AbstractMessage → Message → AnyRef → Any
- Annotations
- @Override()
- def findInitializationErrors(): List[String]
- Definition Classes
- AbstractMessage → MessageOrBuilder
- def getAllFields(): Map[FieldDescriptor, AnyRef]
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def getArguments(index: Int): String
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
repeated string arguments = 2;- index
The index of the element to return.
- returns
The arguments at the given index.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getArgumentsBytes(index: Int): ByteString
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
repeated string arguments = 2;- index
The index of the value to return.
- returns
The bytes of the arguments at the given index.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getArgumentsCount(): Int
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
repeated string arguments = 2;- returns
The count of arguments.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getArgumentsList(): ProtocolStringList
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
Arguments passed directly to the executable. Examples: ["udf_worker.py"] [""] ["--max_concurrency", "5"] ["\"echo 'Test'\""] Every executable will ALWAYS receive the following arguments, which CANNOT be part of the below list of arguments: --id The value of the id argument is a string with the engine-assigned id of this UDF Worker. This can be used in logs and other state information. --connection The value of the connection argument is a string with engine-assinged connection parameters. See [[UDFWorkerProperties]] for details. (Optional)
repeated string arguments = 2;- returns
A list containing the arguments.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def getCommand(index: Int): String
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
repeated string command = 1;- index
The index of the element to return.
- returns
The command at the given index.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getCommandBytes(index: Int): ByteString
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
repeated string command = 1;- index
The index of the value to return.
- returns
The bytes of the command at the given index.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getCommandCount(): Int
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
repeated string command = 1;- returns
The count of command.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getCommandList(): ProtocolStringList
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
Executable to invoke. Examples: ["python3", "-m"] ["worker.bin"] ["java", "worker.java"] ["/bin/bash", "-c"] This executable should be blocking, until the task is finished. Termination is requested via a SIGTERM signal. Success/Failure can be indicated via exit codes: Exit code 0 -> Success Exit code != 0 -> Failure (Required)
repeated string command = 1;- returns
A list containing the command.
- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getDefaultInstanceForType(): ProcessCallable
- Definition Classes
- ProcessCallable → MessageOrBuilder → MessageLiteOrBuilder
- Annotations
- @Override()
- def getDescriptorForType(): Descriptor
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def getEnvironmentVariablesCount(): Int
Environment variables for the invoked process. (Optional)
Environment variables for the invoked process. (Optional)
map<string, string> environment_variables = 3;- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- def getEnvironmentVariablesMap(): Map[String, String]
Environment variables for the invoked process. (Optional)
Environment variables for the invoked process. (Optional)
map<string, string> environment_variables = 3;- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- Annotations
- @Override()
- def getEnvironmentVariablesOrDefault(key: String, defaultValue: String): String
Environment variables for the invoked process. (Optional)
Environment variables for the invoked process. (Optional)
map<string, string> environment_variables = 3;- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- Annotations
- @Override()
- def getEnvironmentVariablesOrThrow(key: String): String
Environment variables for the invoked process. (Optional)
Environment variables for the invoked process. (Optional)
map<string, string> environment_variables = 3;- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- Annotations
- @Override()
- def getField(field: FieldDescriptor): AnyRef
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def getInitializationErrorString(): String
- Definition Classes
- AbstractMessage → MessageOrBuilder
- def getOneofFieldDescriptor(oneof: OneofDescriptor): FieldDescriptor
- Definition Classes
- GeneratedMessage → AbstractMessage → MessageOrBuilder
- def getParserForType(): Parser[ProcessCallable]
- Definition Classes
- ProcessCallable → GeneratedMessage → Message → MessageLite
- Annotations
- @Override()
- def getRepeatedField(field: FieldDescriptor, index: Int): AnyRef
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def getRepeatedFieldCount(field: FieldDescriptor): Int
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def getSerializedSize(): Int
- Definition Classes
- ProcessCallable → GeneratedMessage → AbstractMessage → MessageLite
- Annotations
- @Override()
- def getUnknownFields(): UnknownFieldSet
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def hasField(field: FieldDescriptor): Boolean
- Definition Classes
- GeneratedMessage → MessageOrBuilder
- def hasOneof(oneof: OneofDescriptor): Boolean
- Definition Classes
- GeneratedMessage → AbstractMessage → MessageOrBuilder
- def hashCode(): Int
- Definition Classes
- ProcessCallable → AbstractMessage → Message → AnyRef → Any
- Annotations
- @Override()
- def internalGetFieldAccessorTable(): FieldAccessorTable
- Attributes
- protected[worker]
- Definition Classes
- ProcessCallable → GeneratedMessage
- Annotations
- @Override()
- def internalGetMapFieldReflection(number: Int): MapFieldReflectionAccessor
- Attributes
- protected[worker]
- Definition Classes
- ProcessCallable → GeneratedMessage
- Annotations
- @SuppressWarnings() @Override()
- final def isInitialized(): Boolean
- Definition Classes
- ProcessCallable → GeneratedMessage → AbstractMessage → MessageLiteOrBuilder
- Annotations
- @Override()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def makeExtensionsImmutable(): Unit
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newBuilderForType(parent: BuilderParent): Builder
- Attributes
- protected[worker]
- Definition Classes
- ProcessCallable → AbstractMessage
- Annotations
- @Override()
- def newBuilderForType(): Builder
- Definition Classes
- ProcessCallable → Message → MessageLite
- Annotations
- @Override()
- def newInstance(unused: UnusedPrivateParameter): AnyRef
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def parseUnknownField(input: CodedInputStream, unknownFields: Builder, extensionRegistry: ExtensionRegistryLite, tag: Int): Boolean
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- Annotations
- @throws(classOf[java.io.IOException])
- def parseUnknownFieldProto3(input: CodedInputStream, unknownFields: Builder, extensionRegistry: ExtensionRegistryLite, tag: Int): Boolean
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- Annotations
- @throws(classOf[java.io.IOException])
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toBuilder(): Builder
- Definition Classes
- ProcessCallable → Message → MessageLite
- Annotations
- @Override()
- def toByteArray(): Array[Byte]
- Definition Classes
- AbstractMessageLite → MessageLite
- def toByteString(): ByteString
- Definition Classes
- AbstractMessageLite → MessageLite
- final def toString(): String
- Definition Classes
- AbstractMessage → Message → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def writeDelimitedTo(output: OutputStream): Unit
- Definition Classes
- AbstractMessageLite → MessageLite
- Annotations
- @throws(classOf[java.io.IOException])
- def writeReplace(): AnyRef
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- Annotations
- @throws(classOf[java.io.ObjectStreamException])
- def writeTo(output: CodedOutputStream): Unit
- Definition Classes
- ProcessCallable → GeneratedMessage → AbstractMessage → MessageLite
- Annotations
- @Override()
- def writeTo(output: OutputStream): Unit
- Definition Classes
- AbstractMessageLite → MessageLite
- Annotations
- @throws(classOf[java.io.IOException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
- def getEnvironmentVariables(): Map[String, String]
Use
#getEnvironmentVariablesMap()instead.Use
#getEnvironmentVariablesMap()instead.- Definition Classes
- ProcessCallable → ProcessCallableOrBuilder
- Annotations
- @Override() @Deprecated
- Deprecated
- def internalGetMapField(fieldNumber: Int): MapField[_ <: AnyRef, _ <: AnyRef]
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- Annotations
- @Deprecated
- Deprecated
- def mergeFromAndMakeImmutableInternal(input: CodedInputStream, extensionRegistry: ExtensionRegistryLite): Unit
- Attributes
- protected[protobuf]
- Definition Classes
- GeneratedMessage
- Annotations
- @throws(classOf[com.google.protobuf.InvalidProtocolBufferException]) @Deprecated
- Deprecated