cz.proto.DeltaApplyStatsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: operator.proto
package cz.proto;
public interface DeltaApplyStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.DeltaApplyStats)
com.google.protobuf.MessageOrBuilder {
/**
*
* The number of rows that is deleted in the delta apply.
* If the row is deleted, but not used in the delta apply, it is not counted.
*
*
* uint64 deleted_row_count = 1;
* @return The deletedRowCount.
*/
long getDeletedRowCount();
/**
*
* The number of rows that is updated in the delta apply.
* If the row is updated, but not used in the delta apply, it is not counted.
*
*
* uint64 updated_row_count = 2;
* @return The updatedRowCount.
*/
long getUpdatedRowCount();
/**
* uint64 copied_dest_row_count = 3;
* @return The copiedDestRowCount.
*/
long getCopiedDestRowCount();
/**
* uint64 copied_time_elapsed_us = 4;
* @return The copiedTimeElapsedUs.
*/
long getCopiedTimeElapsedUs();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy