case class AuditTableRegionInfo(table_name: String, store_type: String, store_region: String, created_on: Timestamp, is_deprecated: Boolean, count: Long, max_last_updated: Timestamp) extends Product with Serializable
- table_name
name of the table
- store_type
cold or hot, appended regions are added to hot and after compaction make it into cold. Cold regions can also be compacted
- store_region
id of the region, for simplicity, at least for now it will be GUID
- created_on
timestamp when region was created as a result of an append or compact operation
- is_deprecated
true - its data was compacted into another region, false - it was not compacted
- count
number of records in the region, can be used for optimisation and compaction decisions
- max_last_updated
all records in the audit table will contain column that shows the last updated time, this will be used to generated ingestion queries
- Alphabetic
- By Inheritance
- AuditTableRegionInfo
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
AuditTableRegionInfo(table_name: String, store_type: String, store_region: String, created_on: Timestamp, is_deprecated: Boolean, count: Long, max_last_updated: Timestamp)
- table_name
name of the table
- store_type
cold or hot, appended regions are added to hot and after compaction make it into cold. Cold regions can also be compacted
- store_region
id of the region, for simplicity, at least for now it will be GUID
- created_on
timestamp when region was created as a result of an append or compact operation
- is_deprecated
true - its data was compacted into another region, false - it was not compacted
- count
number of records in the region, can be used for optimisation and compaction decisions
- max_last_updated
all records in the audit table will contain column that shows the last updated time, this will be used to generated ingestion queries
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val count: Long
- val created_on: Timestamp
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val is_deprecated: Boolean
- val max_last_updated: Timestamp
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val store_region: String
- val store_type: String
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val table_name: String
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()