Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.exportRecordsToFiles. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
ExportRecordsToFilesRequest () | |
Constructs an ExportRecordsToFilesRequest object with default parameters. More... | |
ExportRecordsToFilesRequest (string table_name, string filepath, IDictionary< string, string > options=null) | |
Constructs an ExportRecordsToFilesRequest 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 | |
string | table_name [get, set] |
string | filepath [get, set] |
Path to data export target. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [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.exportRecordsToFiles.
Export records from a table to files. All tables can be exported, in full or partial (see COLUMNS_TO_EXPORT and COLUMNS_TO_SKIP). Additional filtering can be applied when using export table with expression through SQL. Default destination is KIFS, though other storage types (Azure, S3, GCS, and HDFS) are supported through DATASINK_NAME; see Kinetica.createDatasink.
Server's local file system is not supported. Default file format is delimited text. See options for different file types and different options for each file type. Table is saved to a single file if within max file size limits (may vary depending on datasink type). If not, then table is split into multiple files; these may be smaller than the max size limit.
All filenames created are returned in the response.
Definition at line 31 of file ExportRecordsToFiles.cs.
|
inline |
Constructs an ExportRecordsToFilesRequest object with default parameters.
Definition at line 520 of file ExportRecordsToFiles.cs.
|
inline |
Constructs an ExportRecordsToFilesRequest object with the specified parameters.
table_name | |
filepath | Path to data export target. If filepath has a file extension, it is read as the name of a file. If filepath is a directory, then the source table name with a random UUID appended will be used as the name of each exported file, all written to that directory. If filepath is a filename, then all exported files will have a random UUID appended to the given name. In either case, the target directory specified or implied must exist. The names of all exported files are returned in the response. |
options | Optional parameters.
|
Definition at line 785 of file ExportRecordsToFiles.cs.
|
getset |
Path to data export target.
If filepath has a file extension, it is read as the name of a file. If filepath is a directory, then the source table name with a random UUID appended will be used as the name of each exported file, all written to that directory. If filepath is a filename, then all exported files will have a random UUID appended to the given name. In either case, the target directory specified or implied must exist. The names of all exported files are returned in the response.
Definition at line 264 of file ExportRecordsToFiles.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 516 of file ExportRecordsToFiles.cs.
|
getset |
Definition at line 253 of file ExportRecordsToFiles.cs.