7 using System.Collections.Generic;
73 public const string TRUE =
"true";
74 public const string FALSE =
"false";
118 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
163 IDictionary<string, string>
options = null)
166 this.options =
options ??
new Dictionary<string, string>();
185 public IList<int>
load {
get; set; } =
new List<int>();
188 public IList<long>
memory {
get; set; } =
new List<long>();
191 public IList<string>
graph_names {
get; set; } =
new List<string>();
209 public IList<bool>
directed {
get; set; } =
new List<bool>();
212 public IList<long>
num_nodes {
get; set; } =
new List<long>();
215 public IList<long>
num_edges {
get; set; } =
new List<long>();
218 public IList<long>
num_bytes {
get; set; } =
new List<long>();
234 public IList<bool>
is_sync_db {
get; set; } =
new List<bool>();
246 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IList< long > num_bytes
Memory this graph uses in bytes.
IDictionary< string, string > options
Optional parameters.
IList< bool > is_partitioned
Indicated if the graph data is distributed across all available servers.
IList< int > load
A percentage approximating the current computational load on the server.
IList< int > graph_server_ids
Id(s) of the graph(s).
bool result
Indicates a success.
ShowGraphRequest()
Constructs a ShowGraphRequest object with default parameters.
IList< long > num_edges
Total number of edges in the graph.
A set of parameters for Kinetica.showGraph(string,IDictionary{string, string}).
IList< string > graph_names
Name(s) of the graph(s).
IList< long > num_nodes
Total number of nodes in the graph.
string graph_name
Name of the graph on which to retrieve information.
const string SERVER_ID
Indicates which graph server(s) to send the request to.
A set of results returned by Kinetica.showGraph(string,IDictionary{string, string}).
IList< long > memory
Available memory.
IList< bool > is_sync_db
Shows whether or not the graph is linked to the original tables that created it, and will potentially...
IList< bool > has_insert_table_monitor
Shows whether or not the graph has an insert table monitor attached to it.
IList< long > resource_capacity
Memory this graph uses in bytes.
ShowGraphRequest(string graph_name=null, IDictionary< string, string > options=null)
Constructs a ShowGraphRequest object with the specified parameters.
IList< string > graph_owner_user_names
Owner of the graph(s) and associated solution table(s).
IList< bool > directed
Whether or not the edges of the graph have directions (bi-directional edges can still exist in direct...
IList< string > original_request
The original client request used to create the graph (before any expression evaluation or separator p...
IList< string > graph_owner_resource_groups
Owner of the resource groups(s) of the graph(s).
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
IList< bool > is_persisted
Shows whether or not the graph is persisted (saved and loaded on launch).
const string SHOW_ORIGINAL_REQUEST
If set to true, the request that was originally used to create the graph is also returned as JSON...