7 using System.Collections.Generic;
42 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
63 IDictionary<string, string>
options =
null)
85 public const string DONE =
"DONE";
91 public const string ERROR =
"ERROR";
113 public const string JSON =
"json";
209 public IDictionary<string, string>
status_map {
get;
set; } =
new Dictionary<string, string>();
212 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string JOB_TAG
Job tag returned in call to create the job.
bool successful
True if the job execution completed and no errors were encountered.
const string CANCELLED
Job cancellation was requested while the execution was in progress.
const string JSON
The job result is JSON-encoded.
KineticaData - class to help with Avro Encoding for Kinetica
A set of string constants for the parameter options.
IDictionary< string, string > options
Optional parameters.
GetJobRequest()
Constructs a GetJobRequest object with default parameters.
const string RUNNING
The job is currently executing.
const string ERROR_MESSAGE
Explains what error occurred while running the job asynchronously.
A set of results returned by Kinetica.getJob.
GetJobRequest(long job_id, IDictionary< string, string > options=null)
Constructs a GetJobRequest object with the specified parameters.
string endpoint
The endpoint which is being executed asynchronously.
const string BINARY
The job result is binary-encoded.
long job_id
A unique identifier for the job whose status and result is to be fetched.
string job_status
Status of the submitted job.
string job_response_str
The json-encoded response of the job.
string response_encoding
The encoding of the job result (contained in job_response or job_response_str.
A set of parameters for Kinetica.getJob.
A set of string constants for the parameter job_status.
bool running
True if the end point is still executing.
A set of string constants for the parameter status_map.
const string DONE
The job execution has successfully completed and the response is included in the job_response or job_...
const string ERROR
The job was attempted, but an error was encountered.
IDictionary< string, string > status_map
Map of various status strings for the executed job.
IDictionary< string, string > info
Additional information.
A set of string constants for the parameter response_encoding.
byte [] job_response
The binary-encoded response of the job.
int progress
Approximate percentage of the job completed.