Kinetica C# API  Version 6.2.0.1
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 
26  {
27 
204  public struct PropertyUpdatesMap
205  {
206 
210  public const string SM_OMP_THREADS = "sm_omp_threads";
211 
214  public const string KERNEL_OMP_THREADS = "kernel_omp_threads";
215 
229  public const string CONCURRENT_KERNEL_EXECUTION = "concurrent_kernel_execution";
230  public const string TRUE = "true";
231  public const string FALSE = "false";
232 
235  public const string CHUNK_SIZE = "chunk_size";
236 
241  public const string EXECUTION_MODE = "execution_mode";
242 
247  public const string FLUSH_TO_DISK = "flush_to_disk";
248 
251  public const string CLEAR_CACHE = "clear_cache";
252 
261  public const string COMMUNICATOR_TEST = "communicator_test";
262 
277  public const string SET_MESSAGE_TIMERS_ENABLED = "set_message_timers_enabled";
278 
281  public const string BULK_ADD_TEST = "bulk_add_test";
282 
293  public const string NETWORK_SPEED = "network_speed";
294 
300  public const string REQUEST_TIMEOUT = "request_timeout";
301 
305  public const string MAX_GET_RECORDS_SIZE = "max_get_records_size";
306 
310  public const string MEMORY_ALLOCATION_LIMIT_MB = "memory_allocation_limit_mb";
311 
313  public const string ENABLE_AUDIT = "enable_audit";
314 
317  public const string AUDIT_HEADERS = "audit_headers";
318 
321  public const string AUDIT_BODY = "audit_body";
322 
324  public const string AUDIT_DATA = "audit_data";
325 
328  public const string ENABLE_JOB_MANAGER = "enable_job_manager";
329 
332  public const string CHUNK_CACHE_ENABLED = "chunk_cache_enabled";
333 
336  public const string CHUNK_CACHE_SIZE = "chunk_cache_size";
337  } // end struct PropertyUpdatesMap
338 
339 
514  public IDictionary<string, string> property_updates_map { get; set; } = new Dictionary<string, string>();
515 
518  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
519 
520 
524 
705  public AlterSystemPropertiesRequest( IDictionary<string, string> property_updates_map,
706  IDictionary<string, string> options = null)
707  {
708  this.property_updates_map = property_updates_map ?? new Dictionary<string, string>();
709  this.options = options ?? new Dictionary<string, string>();
710  } // end constructor
711 
712  } // end class AlterSystemPropertiesRequest
713 
714 
715 
720  {
721 
724  public IDictionary<string, string> updated_properties_map { get; set; } = new Dictionary<string, string>();
725 
726  } // end class AlterSystemPropertiesResponse
727 
728 
729 
730 
731 } // end namespace kinetica
const string MEMORY_ALLOCATION_LIMIT_MB
Set the memory allocation limit for all rank processes in megabytes, 0 means no limit.
const string FLUSH_TO_DISK
Flushes any changes to any tables to the persistent store.
const string ENABLE_JOB_MANAGER
Enable JobManager to enforce processing of requests in the order received.
AlterSystemPropertiesRequest()
Constructs an AlterSystemPropertiesRequest object with default parameters.
A set of results returned by Kinetica.alterSystemProperties(IDictionary<string, string>,IDictionary<string, string>).
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 EXECUTION_MODE
Sets the execution_mode for kernel executions to the specified string value.
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.
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...
const string AUDIT_HEADERS
Enable or disable auditing of request headers.
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 AUDIT_BODY
Enable or disable auditing of request bodies.
const string SM_OMP_THREADS
Set the number of OpenMP threads that will be used to service filter & 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...
const string AUDIT_DATA
Enable or disable auditing of request data.
A set of parameters for Kinetica.alterSystemProperties(IDictionary<string, string>,IDictionary<string, string>).
const string REQUEST_TIMEOUT
Number of minutes after which filtering (e.g., Kinetica.filter(string,string,string,IDictionary<string, string>)) and aggregating (e.g., Kinetica.aggregateGroupBy(string,IList<string>,long,long,IDictionary<string, string>)) queries will timeout.
const string CHUNK_CACHE_ENABLED
Enable chunk level query caching.
const string CHUNK_SIZE
Sets the chunk size of all new sets to the specified integer value.
const string CHUNK_CACHE_SIZE
Size of the chunk cache in bytes.
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