pub enum Feature {
Show 22 variants
TestDummy,
TimeTravel,
GlueSchemaRegistry,
SnowflakeSink,
RedisSinkStream,
DynamoDbSink,
OpenSearchSink,
BigQuerySink,
ClickHouseSharedEngine,
SecretManagement,
SqlServerSink,
SqlServerCdcSource,
CdcAutoSchemaChange,
IcebergSinkWithGlue,
ElasticDiskCache,
ResourceGroup,
DatabaseFailureIsolation,
IcebergCompaction,
SinkAutoSchemaChange,
StateTableMemoryPreload,
LocalityBackfill,
SinkSinceTimestamp,
}Expand description
A set of features that are available based on the license.
JSON schema
{
"title": "Feature",
"description": "A set of features that are available based on the license.",
"oneOf": [
{
"description": "A dummy feature for testing purposes.",
"type": "string",
"const": "TestDummy"
},
{
"description": "Query historical data within the retention period.",
"type": "string",
"const": "TimeTravel"
},
{
"description": "Use Schema Registry from AWS Glue rather than Confluent.",
"type": "string",
"const": "GlueSchemaRegistry"
},
{
"description": "Delivering data to SnowFlake.",
"type": "string",
"const": "SnowflakeSink"
},
{
"description": "Delivering data to redis stream.",
"type": "string",
"const": "RedisSinkStream"
},
{
"description": "Delivering data to DynamoDb.",
"type": "string",
"const": "DynamoDbSink"
},
{
"description": "Delivering data to OpenSearch.",
"type": "string",
"const": "OpenSearchSink"
},
{
"description": "Delivering data to BigQuery.",
"type": "string",
"const": "BigQuerySink"
},
{
"description": "Delivering data to Shared tree on clickhouse cloud",
"type": "string",
"const": "ClickHouseSharedEngine"
},
{
"description": "Secret management.",
"type": "string",
"const": "SecretManagement"
},
{
"description": "Sink data from RisingWave to SQL Server.",
"type": "string",
"const": "SqlServerSink"
},
{
"description": "CDC source connector for Sql Server.",
"type": "string",
"const": "SqlServerCdcSource"
},
{
"description": "Auto replicate upstream DDL to CDC Table.",
"type": "string",
"const": "CdcAutoSchemaChange"
},
{
"description": "Delivering data to Iceberg with Glue catalog.",
"type": "string",
"const": "IcebergSinkWithGlue"
},
{
"description": "Disk cache and refilling to boost performance and reduce object store access cost.",
"type": "string",
"const": "ElasticDiskCache"
},
{
"description": "Resource group to isolate workload and failure.",
"type": "string",
"const": "ResourceGroup"
},
{
"description": "Failure isolation between databases.",
"type": "string",
"const": "DatabaseFailureIsolation"
},
{
"description": "Auto iceberg compaction.",
"type": "string",
"const": "IcebergCompaction"
},
{
"description": "Sink auto schema change.",
"type": "string",
"const": "SinkAutoSchemaChange"
},
{
"description": "Support state table memory preload for boosting performance.",
"type": "string",
"const": "StateTableMemoryPreload"
},
{
"description": "Support locality backfill for complex streaming queries.",
"type": "string",
"const": "LocalityBackfill"
},
{
"description": "Create sinks from a historical timestamp.",
"type": "string",
"const": "SinkSinceTimestamp"
}
]
}Variants§
TestDummy
A dummy feature for testing purposes.
TimeTravel
Query historical data within the retention period.
GlueSchemaRegistry
Use Schema Registry from AWS Glue rather than Confluent.
SnowflakeSink
Delivering data to SnowFlake.
RedisSinkStream
Delivering data to redis stream.
DynamoDbSink
Delivering data to DynamoDb.
OpenSearchSink
Delivering data to OpenSearch.
BigQuerySink
Delivering data to BigQuery.
Delivering data to Shared tree on clickhouse cloud
SecretManagement
Secret management.
SqlServerSink
Sink data from RisingWave to SQL Server.
SqlServerCdcSource
CDC source connector for Sql Server.
CdcAutoSchemaChange
Auto replicate upstream DDL to CDC Table.
IcebergSinkWithGlue
Delivering data to Iceberg with Glue catalog.
ElasticDiskCache
Disk cache and refilling to boost performance and reduce object store access cost.
ResourceGroup
Resource group to isolate workload and failure.
DatabaseFailureIsolation
Failure isolation between databases.
IcebergCompaction
Auto iceberg compaction.
SinkAutoSchemaChange
Sink auto schema change.
StateTableMemoryPreload
Support state table memory preload for boosting performance.
LocalityBackfill
Support locality backfill for complex streaming queries.
SinkSinceTimestamp
Create sinks from a historical timestamp.
Implementations§
Source§impl Feature
impl Feature
Sourcepub fn description(self) -> &'static str
pub fn description(self) -> &'static str
Description of the feature.
Sourcepub(crate) fn all_as_of_2_5() -> &'static [Feature]
pub(crate) fn all_as_of_2_5() -> &'static [Feature]
Get a slice of all features available as of 2.5 (before we introduce custom tier).
Source§impl Feature
impl Feature
Sourcepub(crate) fn check_available_with(
self,
manager: &LicenseManager,
) -> Result<(), FeatureNotAvailable>
pub(crate) fn check_available_with( self, manager: &LicenseManager, ) -> Result<(), FeatureNotAvailable>
Check whether the feature is available based on the given license manager.
Sourcepub fn check_available(self) -> Result<(), FeatureNotAvailable>
pub fn check_available(self) -> Result<(), FeatureNotAvailable>
Check whether the feature is available based on the current license.
Trait Implementations§
impl Copy for Feature
Source§impl<'de> Deserialize<'de> for Feature
impl<'de> Deserialize<'de> for Feature
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl EnumMessage for Feature
impl EnumMessage for Feature
fn get_message(&self) -> Option<&'static str>
fn get_detailed_message(&self) -> Option<&'static str>
Source§fn get_documentation(&self) -> Option<&'static str>
fn get_documentation(&self) -> Option<&'static str>
fn get_serializations(&self) -> &'static [&'static str]
impl Eq for Feature
Source§impl Ord for Feature
impl Ord for Feature
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialOrd for Feature
impl PartialOrd for Feature
impl StructuralPartialEq for Feature
Source§impl TryFrom<&String> for Feature
impl TryFrom<&String> for Feature
Source§type Error = ConversionError
type Error = ConversionError
Source§impl TryFrom<&str> for Feature
impl TryFrom<&str> for Feature
Source§type Error = ConversionError
type Error = ConversionError
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnsafeUnpin for Feature
impl UnwindSafe for Feature
Blanket Implementations§
impl<T> Allocation for T
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
U: Sized,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
U: Sized,
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read moreSource§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Any.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].impl<T> MaybeSend for Twhere
T: Send,
impl<N> NodeTrait for N
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.