本文简要介绍 python 语言中 arcgis.realtime.velocity.feeds.Kafka
的用法。
用法:
class arcgis.realtime.velocity.feeds.Kafka(label, description, brokers, topics, authentication, consumer_group_id=None, data_format=None, track_id_field=None, geometry=None, time=None)
可选参数:
- consumer_group_id: String 。一个唯一的字符串,标识此 feed 所属的消费者组作为消费者。
- data_format:
[
EsriJsonFormat
、GeoJsonFormat
、DelimitedFormat
、JsonFormat
、XMLFormat
]。包含此 feed 的数据格式配置的实例。仅配置允许的格式。如果在初始化期间未正确设置,则会自动检测格式并根据传入数据的样本进行设置。该示例将从 init 中迄今为止提供的配置中获取。 - track_id_field: String 。应设置为轨道 ID 的传入数据字段的名称。
- geometry:
[
XYZGeometry
,SingleFieldGeometry
]。几何配置的实例,将用于从传入数据创建几何对象。 - time:
[
TimeInstant
,TimeInterval
]。时间配置实例,将用于根据传入数据创建时间信息。
返回:
具有 Kafka 提要配置的数据类。
从 Kafka 代理接收事件数据。该数据类可用于定义提要配置并创建提要。
Parameter
Description
label
String 。此 Feed 实例的唯一标签。
description
String 。饲料说明。
brokers
String 。以逗号分隔的 Kafka 代理列表,包括端口,例如
host1.domain.com:9092
、host2.domain.com:9092
。例如:
kafkaServer1.hostname.com:9092,kafkaServer2.hostname.com:9092
topics
String 。输出将向其发送消息的主题。
authentication
[
NoAuth
、SASLPlain
、SaslScramSha512
SaslScramSha256
]。卡夫卡认证类型。例子:
# Usage Example from arcgis.realtime.velocity.feeds import Kafka from arcgis.realtime.velocity.feeds.kafka_authentication_type import NoAuth, SASLPlain from arcgis.realtime.velocity.feeds.geometry import XYZGeometry, SingleFieldGeometry from arcgis.realtime.velocity.feeds.time import TimeInterval, TimeInstant kafka_config = Kafka( label="feed_name", description="feed_description", brokers="kafka.a4iot.com:9092", topics="topicName", authentication=NoAuth(), data_format=None ) # use velocity object to get the FeedsManager instance feeds = velocity.feeds # use the FeedsManager object to create a feed from this feed configuration kafka_feed = feeds.create(kafka_config) kafka_feed.start() feeds.items
相关用法
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS KnowledgeGraph.apply_edits用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_adds用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_update用法及代码示例
- Python ArcGIS KnowledgeGraph用法及代码示例
- Python ArcGIS KnowledgeGraph.graph_property_delete用法及代码示例
- Python ArcGIS KnowledgeGraph.query用法及代码示例
- Python ArcGIS KnowledgeGraph.graph_property_adds用法及代码示例
- Python ArcGIS KnowledgeGraph.graph_property_update用法及代码示例
- Python ArcGIS KnowledgeGraph.search用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS Site.delete用法及代码示例
- Python ArcGIS GeoAccessor.bbox用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS generate_service_areas用法及代码示例
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS RunInterval用法及代码示例
- Python ArcGIS describe_dataset用法及代码示例
- Python ArcGIS acos用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.realtime.velocity.feeds.Kafka。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。