7 using System.Collections.Generic;
37 public const string TRUE =
"true";
38 public const string FALSE =
"false";
43 public IList<string>
table_names {
get;
set; } =
new List<string>();
66 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
99 IDictionary<string, string>
options =
null)
101 this.table_names =
table_names ??
new List<string>();
111 public IList<string>
table_names {
get;
set; } =
new List<string>();
114 public IList<IList<long>>
sizes {
get;
set; } =
new List<IList<long>>();
117 public IList<long>
capacities {
get;
set; } =
new List<long>();
120 public IList<IList<long>>
uncommitted {
get;
set; } =
new List<IList<long>>();
123 public IList<IDictionary<string, string>>
settings {
get;
set; } =
new List<IDictionary<string, string>>();
126 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
KineticaData - class to help with Avro Encoding for Kinetica
IList< string > table_names
List of tables to query.
IDictionary< string, string > options
Optional parameters.
IList< IList< long > > sizes
List of current WAL usage.
IDictionary< string, string > info
Additional information.
const string SHOW_SETTINGS
If TRUE include a map of the WAL settings for the requested tables.
A set of string constants for the parameter options.
IList< long > capacities
List of WAL capacities.
A set of parameters for Kinetica.showWal.
IList< IDictionary< string, string > > settings
List of table WAL settings.
IList< IList< long > > uncommitted
List of number of uncommitted entries.
IList< string > table_names
List of returned tables.
ShowWalRequest()
Constructs a ShowWalRequest object with default parameters.
A set of results returned by Kinetica.showWal.
ShowWalRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowWalRequest object with the specified parameters.