Titan Core
  • Overview
  • Getting Started
  • Working With Resources
  • Blueprint
  • GitHub Action
  • Resources
    • APIAuthenticationSecurityIntegration
    • APIIntegration
    • AccountParameter
    • AggregationPolicy
    • Alert
    • AuthenticationPolicy
    • AzureStorageIntegration
    • ComputePool
    • Database
    • DatabaseRole
    • DynamicTable
    • EmailNotificationIntegration
    • EventTable
    • ExternalAccessIntegration
    • ExternalStage
    • FailoverGroup
    • FutureGrant
    • GCSStorageIntegration
    • GenericSecret
    • GlueCatalogIntegration
    • Grant
    • GrantOnAll
    • HybridTable
    • ImageRepository
    • InternalStage
    • JSONFileFormat
    • JavascriptUDF
    • MaterializedView
    • NetworkPolicy
    • NetworkRule
    • OAuthSecret
    • ObjectStoreCatalogIntegration
    • PackagesPolicy
    • ParquetFileFormat
    • PasswordPolicy
    • PasswordSecret
    • Pipe
    • PythonStoredProcedure
    • PythonUDF
    • ReplicationGroup
    • ResourceMonitor
    • Role
    • RoleGrant
    • S3StorageIntegration
    • Schema
    • Sequence
    • Service
    • SessionPolicy
    • Share
    • SnowflakePartnerOAuthSecurityIntegration
    • SnowservicesOAuthSecurityIntegration
    • StageStream
    • Table
    • TableStream
    • Tag
    • Task
    • User
    • View
    • ViewStream
    • Warehouse
Powered by GitBook
On this page
  • Examples
  • Python
  • YAML
  • Fields
  1. Resources

HybridTable

PreviousGrantOnAllNextImageRepository

Last updated 10 months ago

[UNDER DEVELOPMENT] A hybrid table is a Snowflake table type that is optimized for hybrid transactional and operational workloads that require low latency and high throughput on small random point reads and writes.

Examples

Python

hybrid_table = HybridTable(
    name="some_hybrid_table",
    columns=[Column(name="col1", type="STRING")],
    owner="SYSADMIN",
    comment="This is a hybrid table."
)

YAML

hybrid_tables:
  - name: some_hybrid_table
    columns:
      - name: col1
        type: STRING
    owner: SYSADMIN
    comment: This is a hybrid table.

Fields

  • name (string, required) - The name of the hybrid table.

  • columns (list, required) - The columns of the hybrid table.

  • tags (dict) - Tags associated with the hybrid table.

  • comment (string) - A comment for the hybrid table.

owner (string or ) - The owner role of the hybrid table. Defaults to "SYSADMIN".

Snowflake Documentation
Role