Show / Hide Table of Contents

Class HeatWaveClusterTableMemoryEstimate

Estimated memory footprint for a MySQL user table when loaded to the HeatWave cluster memory.

Inheritance
object
HeatWaveClusterTableMemoryEstimate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class HeatWaveClusterTableMemoryEstimate

Properties

AnalyticalFootprintInMbs

Declaration
[Required(ErrorMessage = "AnalyticalFootprintInMbs is required.")]
[JsonProperty(PropertyName = "analyticalFootprintInMbs")]
public long? AnalyticalFootprintInMbs { get; set; }
Property Value
Type Description
long?

The estimated memory footprint of the table in MBs when loaded to HeatWave cluster memory (null if the table cannot be loaded to the HeatWave cluster).

Remarks

Required

ErrorComment

Declaration
[Required(ErrorMessage = "ErrorComment is required.")]
[JsonProperty(PropertyName = "errorComment")]
public string ErrorComment { get; set; }
Property Value
Type Description
string

Error comment (empty string if no errors occured).

Remarks

Required

EstimatedRowCount

Declaration
[Required(ErrorMessage = "EstimatedRowCount is required.")]
[JsonProperty(PropertyName = "estimatedRowCount")]
public long? EstimatedRowCount { get; set; }
Property Value
Type Description
long?

The estimated number of rows in the table. This number was used to derive the analytical memory footprint.

Remarks

Required

TableName

Declaration
[Required(ErrorMessage = "TableName is required.")]
[JsonProperty(PropertyName = "tableName")]
public string TableName { get; set; }
Property Value
Type Description
string

The table name.

Remarks

Required

ToLoadColumnCount

Declaration
[Required(ErrorMessage = "ToLoadColumnCount is required.")]
[JsonProperty(PropertyName = "toLoadColumnCount")]
public int? ToLoadColumnCount { get; set; }
Property Value
Type Description
int?

The number of columns to be loaded to HeatWave cluster memory. These columns contribute to the analytical memory footprint.

Remarks

Required

VarlenColumnCount

Declaration
[Required(ErrorMessage = "VarlenColumnCount is required.")]
[JsonProperty(PropertyName = "varlenColumnCount")]
public int? VarlenColumnCount { get; set; }
Property Value
Type Description
int?

The number of variable-length columns to be loaded to HeatWave cluster memory. These columns contribute to the analytical memory footprint.

Remarks

Required

In this article
Back to top