本文简要介绍 python 语言中 pyflink.datastream.connectors.PulsarSourceBuilder
的用法。
用法:
class pyflink.datastream.connectors.PulsarSourceBuilder
PulsarSource 的构建器类,使用户更容易构建 PulsarSource。
以下示例显示了创建 PulsarSource 的最低设置,该 PulsarSource 从 Pulsar 主题中读取字符串值。
例子:
>>> source = PulsarSource() \ ... .builder() \ ... .set_service_url(PULSAR_BROKER_URL) \ ... .set_admin_url(PULSAR_BROKER_HTTP_URL) \ ... .set_subscription_name("flink-source-1") \ ... .set_topics([TOPIC1, TOPIC2]) \ ... .set_deserialization_schema( ... PulsarDeserializationSchema.flink_schema(SimpleStringSchema())) \ ... .build()
服务 url、管理员 url、订阅名称、要使用的主题和记录反序列化器是必须设置的必填字段。
要指定 PulsarSource 的起始位置,可以调用set_start_cursor(StartCursor)。
默认情况下,PulsarSource 以 Boundedness.CONTINUOUS_UNBOUNDED 模式运行,并且在 Flink 作业被取消或失败之前永远不会停止。要让PulsarSource 在Boundedness.CONTINUOUS_UNBOUNDED 中运行但在某些给定的偏移处停止,可以调用set_unbounded_stop_cursor(StopCursor)。
例如下面的 PulsarSource 在消耗到 Flink 启动的事件时间后停止。
例子:
>>> source = PulsarSource() \ ... .builder() \ ... .set_service_url(PULSAR_BROKER_URL) \ ... .set_admin_url(PULSAR_BROKER_HTTP_URL) \ ... .set_subscription_name("flink-source-1") \ ... .set_topics([TOPIC1, TOPIC2]) \ ... .set_deserialization_schema( ... PulsarDeserializationSchema.flink_schema(SimpleStringSchema())) \ ... .set_bounded_stop_cursor(StopCursor.at_event_time(int(time.time() * 1000))) ... .build()
相关用法
- Python pyflink PulsarSource用法及代码示例
- Python pyflink ProcessingTimeSessionWindows用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink GroupedTable.select用法及代码示例
- Python pyflink StreamTableEnvironment.from_data_stream用法及代码示例
- Python pyflink Expression.to_date用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink TableEnvironment.create_temporary_function用法及代码示例
- Python pyflink Table.right_outer_join用法及代码示例
- Python pyflink Expression.json_value用法及代码示例
- Python pyflink Table.distinct用法及代码示例
- Python pyflink WatermarkStrategy.with_timestamp_assigner用法及代码示例
- Python pyflink TableEnvironment.register_table_source用法及代码示例
- Python pyflink Table.where用法及代码示例
- Python pyflink Expression.end用法及代码示例
- Python pyflink lit用法及代码示例
- Python pyflink TableEnvironment.create_java_temporary_function用法及代码示例
- Python pyflink Row.as_dict用法及代码示例
- Python pyflink StreamTableEnvironment.create用法及代码示例
- Python pyflink Table.drop_columns用法及代码示例
- Python pyflink Expression.over用法及代码示例
- Python pyflink Table.execute用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_restart_strategy用法及代码示例
- Python pyflink range_用法及代码示例
- Python pyflink Expression.to_time用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.datastream.connectors.PulsarSourceBuilder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。