Andy Grove
06/29/2023, 7:30 PMNick Karpov
06/30/2023, 4:10 PMAndy Grove
06/30/2023, 4:13 PMNick Karpov
06/30/2023, 4:30 PMAndy Grove
06/30/2023, 4:35 PMvenki
06/30/2023, 4:44 PMAndy Grove
06/30/2023, 4:51 PMvenki
06/30/2023, 4:55 PMAndy Grove
06/30/2023, 4:56 PMDeleteCommand
with GpuDeleteCommand
which is based on OSS Delta Lake.
We have this code that logs the delete event/metrics:
recordDeltaEvent(
deltaLog,
"delta.dml.delete.stats",
data = DeleteMetric(
...
)
There are no deletion vector metrics here, so I tried just adding
persistentDeletionVectorsUsed = true,
numDeletionVectorsAdded = Some(0),
numDeletionVectorsRemoved = Some(0)
This is compiling against the Databricks libraries. These metrics do not show up in the JSON though and that is where I am stuck right now.venki
06/30/2023, 5:05 PMDeltaOperations.Delete.operationMetrics
in SQL metrics. These metrics are what filled as part of the CommitInfo
which is serialized as JSON.DeltaOperations.Delete.operationMetrics
are causing the issue you are seeing?Andy Grove
06/30/2023, 5:07 PMvenki
06/30/2023, 6:03 PM