Kinetica C# API
Version 7.1.10.0
|
A set of parameters for Kinetica.uploadFiles(IList{string},IList{byte[]},IDictionary{string, string}). More...
Classes | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
UploadFilesRequest () | |
Constructs an UploadFilesRequest object with default parameters. More... | |
UploadFilesRequest (IList< string > file_names, IList< byte[]> file_data, IDictionary< string, string > options=null) | |
Constructs an UploadFilesRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
IList< string > | file_names [get, set] |
An array of full file name paths to be used for the files uploaded to KiFS. More... | |
IList< byte[]> | file_data = new List<string>() [get, set] |
File data for the files being uploaded, for the respective files in . More... | |
IDictionary< string, string > | options = new List<byte[]>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.uploadFiles(IList{string},IList{byte[]},IDictionary{string, string}).
Uploads one or more files to KiFS. There are two methods for uploading files: load files in their entirety, or load files in parts. The latter is recommeded for files of approximately 60 MB or larger.
To upload files in their entirety, populate file_names with the file names to upload into on KiFS, and their respective byte content in file_data.
Multiple steps are involved when uploading in multiple parts. Only one file at a time can be uploaded in this manner. A user-provided UUID is utilized to tie all the upload steps together for a given file. To upload a file in multiple parts:
Definition at line 88 of file UploadFiles.cs.
|
inline |
Constructs an UploadFilesRequest object with default parameters.
Definition at line 452 of file UploadFiles.cs.
|
inline |
Constructs an UploadFilesRequest object with the specified parameters.
file_names | An array of full file name paths to be used for the files uploaded to KiFS. File names may have any number of nested directories in their paths, but the top-level directory must be an existing KiFS directory. Each file must reside in or under a top-level directory. A full file name path cannot be larger than 1024 characters. |
file_data | File data for the files being uploaded, for the respective files in . |
options | Optional parameters.
|
Definition at line 579 of file UploadFiles.cs.
|
getset |
File data for the files being uploaded, for the respective files in .
Definition at line 336 of file UploadFiles.cs.
|
getset |
An array of full file name paths to be used for the files uploaded to KiFS.
File names may have any number of nested directories in their paths, but the top-level directory must be an existing KiFS directory. Each file must reside in or under a top-level directory. A full file name path cannot be larger than 1024 characters.
Definition at line 331 of file UploadFiles.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 447 of file UploadFiles.cs.