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