Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions jikkou/kafka-connectors-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,14 @@ apps:
collectionName: CmRevocableEnabledLaneAlignmentEvent
useTimestamp: true
timestampField: eventGeneratedAt
- topicName: topic.CmRtcmBroadcastRateEvent
collectionName: CmRtcmBroadcastRateEvent
useTimestamp: true
timestampField: eventGeneratedAt
- topicName: topic.CmRtcmMinimumDataEvent
collectionName: CmRtcmMinimumDataEvent
useTimestamp: true
timestampField: eventGeneratedAt
- topicName: topic.CmSpatMinimumDataEventAggregation
collectionName: CmSpatMinimumDataEventAggregation
generateTimestamp: true
Expand Down Expand Up @@ -293,6 +301,10 @@ apps:
collectionName: CmRevocableEnabledLaneAlignmentEventAggregation
generateTimestamp: true
timestampField: eventGeneratedAt
- topicName: topic.CmRtcmMinimumDataEventAggregation
collectionName: CmRtcmMinimumDataEventAggregation
generateTimestamp: true
timestampField: eventGeneratedAt



Expand Down
1 change: 1 addition & 0 deletions jikkou/kafka-topics-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ apps:
- topic.ProcessedMap
- topic.ProcessedMapWKT
- topic.ProcessedBsm
- topic.ProcessedRtcm
tableTopics: {}
customTopics: {}
conflictmonitor:
Expand Down
2 changes: 1 addition & 1 deletion mongo/create_indexes.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const odeCollections = [
const geoJsonConverterCollections = [
{name: "ProcessedMap", ttlField: "recordGeneratedAt", timeField: "properties.timeStamp", intersectionField: "properties.intersectionId", expireTime: expireSeconds},
{name: "ProcessedSpat", ttlField: "recordGeneratedAt", timeField: "utcTimeStamp", intersectionField: "intersectionId", expireTime: expireSeconds},
{name: "ProcessedBsm", ttlField: "recordGeneratedAt", timeField: "timeStamp", geoSpatialField: "geometry.coordinates", expireTime: expireSeconds},
{name: "ProcessedBsm", ttlField: "recordGeneratedAt", timeField: "timeStamp", geoSpatialField: "geometry.coordinates", expireTime: expireSeconds}
];


Expand Down
Loading