You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Title: EMRCluster node does not have firstseen property anymore
Description:
As part of #1038 change, EMRCluster node no longer has "firstseen" property. The problem is that "firstseen" is defined as explicit property in EMRClusterNodeProperties class
firstseen: PropertyRef = PropertyRef('firstseen')
during query building phase, this ends up getting translated as:
SET\n i.lastupdated = $lastupdated,\ni.arn = item.ClusterArn,\ni.auto_terminate = item.AutoTerminate,\ni.autoscaling_role = item.AutoScalingRole,\ni.custom_ami_id = item.CustomAmiId,\ni.firstseen = item.firstseen,
however since the item doesn't have firstseen property, it gets reset to None and the original timestamp (set via ON CREATE SET) is lost.
To Reproduce:
Run cartography against an account that has EMR setup and then review the EMRCluster node.
The text was updated successfully, but these errors were encountered:
Title: EMRCluster node does not have firstseen property anymore
Description:
As part of #1038 change, EMRCluster node no longer has "firstseen" property. The problem is that "firstseen" is defined as explicit property in EMRClusterNodeProperties class
firstseen: PropertyRef = PropertyRef('firstseen')
during query building phase, this ends up getting translated as:
SET\n i.lastupdated = $lastupdated,\ni.arn = item.ClusterArn,\ni.auto_terminate = item.AutoTerminate,\ni.autoscaling_role = item.AutoScalingRole,\ni.custom_ami_id = item.CustomAmiId,\ni.firstseen = item.firstseen,
however since the item doesn't have firstseen property, it gets reset to None and the original timestamp (set via ON CREATE SET) is lost.
To Reproduce:
The text was updated successfully, but these errors were encountered: