7 using System.Collections.Generic;
27 public const string BINARY =
"binary";
28 public const string JSON =
"json";
29 public const string SNAPPY =
"snappy";
74 public byte[]
data {
get;
set; }
96 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
152 IDictionary<string, string>
options =
null)
156 this.data =
data ??
new byte[] { };
199 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IDictionary< string, string > options
Optional parameters.
string endpoint
Indicates which endpoint to execute, e.g.
long job_id
An identifier for the job created by this call.
KineticaData - class to help with Avro Encoding for Kinetica
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.createJob.
byte [] data
Binary-encoded payload for the job to be run asynchronously.
const string JOB_TAG
Tag to use for submitted job.
A set of string constants for the parameter info.
CreateJobRequest(string endpoint, string request_encoding, byte[] data, string data_str, IDictionary< string, string > options=null)
Constructs a CreateJobRequest object with the specified parameters.
A set of results returned by Kinetica.createJob.
A set of string constants for the parameter options.
const string QUERY_ID
A unique identifier for this job generated for use in tracing telemetry data.
CreateJobRequest()
Constructs a CreateJobRequest object with default parameters.
string request_encoding
The encoding of the request payload for the job.
A set of string constants for the parameter request_encoding.
const string JOB_TAG
The job tag specified by the user or if unspecified by user, a unique identifier generated internally...
string data_str
JSON-encoded payload for the job to be run asynchronously.