Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterSystemProperties.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
23  {
24 
113  public struct PropertyUpdatesMap
114  {
115 
119  public const string SM_OMP_THREADS = "sm_omp_threads";
120 
123  public const string KERNEL_OMP_THREADS = "kernel_omp_threads";
124 
129  public const string CONCURRENT_KERNEL_EXECUTION = "concurrent_kernel_execution";
130  public const string TRUE = "true";
131  public const string FALSE = "false";
132 
135  public const string CHUNK_SIZE = "chunk_size";
136 
141  public const string FLUSH_TO_DISK = "flush_to_disk";
142 
145  public const string CLEAR_CACHE = "clear_cache";
146 
155  public const string COMMUNICATOR_TEST = "communicator_test";
156 
162  public const string SET_MESSAGE_TIMERS_ENABLED = "set_message_timers_enabled";
163 
166  public const string BULK_ADD_TEST = "bulk_add_test";
167 
178  public const string NETWORK_SPEED = "network_speed";
179 
183  public const string REQUEST_TIMEOUT = "request_timeout";
184 
187  public const string MAX_GET_RECORDS_SIZE = "max_get_records_size";
188  } // end struct PropertyUpdatesMap
189 
190 
277  public IDictionary<string, string> property_updates_map { get; set; } = new Dictionary<string, string>();
278 
280  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
281 
282 
286 
378  public AlterSystemPropertiesRequest( IDictionary<string, string> property_updates_map,
379  IDictionary<string, string> options = null)
380  {
381  this.property_updates_map = property_updates_map ?? new Dictionary<string, string>();
382  this.options = options ?? new Dictionary<string, string>();
383  } // end constructor
384 
385  } // end class AlterSystemPropertiesRequest
386 
387 
388 
392  {
393 
396  public IDictionary<string, string> updated_properties_map { get; set; } = new Dictionary<string, string>();
397 
398  } // end class AlterSystemPropertiesResponse
399 
400 
401 
402 
403 } // end namespace kinetica
const string FLUSH_TO_DISK
Flushes any changes to any tables to the persistent store.
AlterSystemPropertiesRequest()
Constructs an AlterSystemPropertiesRequest object with default parameters.
A set of results returned by /alter/system/properties.
const string KERNEL_OMP_THREADS
Set the number of kernel OpenMP threads to the specified integer value.
IDictionary< string, string > property_updates_map
Map containing the properties of the system to be updated.
const string COMMUNICATOR_TEST
Invoke the communicator test and report timing results.
const string MAX_GET_RECORDS_SIZE
The maximum number of records the database will serve for a given data retrieval call
IDictionary< string, string > updated_properties_map
map of values updated, For speed tests a map of values measured to the measurement ...
AlterSystemPropertiesRequest(IDictionary< string, string > property_updates_map, IDictionary< string, string > options=null)
Constructs an AlterSystemPropertiesRequest object with the specified parameters.
const string CONCURRENT_KERNEL_EXECUTION
Enables concurrent kernel execution if the value is true and disables it if the value is false...
Map containing the properties of the system to be updated.
const string NETWORK_SPEED
Invoke the network speed test and report timing results.
const string SM_OMP_THREADS
Set the number of OpenMP threads that will be used to service filter &amp; aggregation requests against c...
const string SET_MESSAGE_TIMERS_ENABLED
Enables the communicator test to collect additional timing statistics when the value string is true...
A set of parameters for /alter/system/properties.
const string REQUEST_TIMEOUT
Number of minutes after which filtering (e.g., /filter) and aggregating (e.g., /aggregate/groupby) qu...
const string CHUNK_SIZE
Sets the chunk size of all new sets to the specified integer value.
IDictionary< string, string > options
Optional parameters.
const string BULK_ADD_TEST
Invoke the bulk add test and report timing results.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14