cz.proto.CacheFileInputStreamStatsOrBuilder 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 CacheFileInputStreamStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.CacheFileInputStreamStats)
com.google.protobuf.MessageOrBuilder {
/**
* bool cache_hit = 1;
* @return The cacheHit.
*/
boolean getCacheHit();
/**
* string short_circuit_stream_type = 2;
* @return The shortCircuitStreamType.
*/
java.lang.String getShortCircuitStreamType();
/**
* string short_circuit_stream_type = 2;
* @return The bytes for shortCircuitStreamType.
*/
com.google.protobuf.ByteString
getShortCircuitStreamTypeBytes();
/**
* bool segment_mode = 3;
* @return The segmentMode.
*/
boolean getSegmentMode();
/**
* uint64 non_read_time_elapsed_us = 4;
* @return The nonReadTimeElapsedUs.
*/
long getNonReadTimeElapsedUs();
/**
* uint64 rpc_read_bytes = 5;
* @return The rpcReadBytes.
*/
long getRpcReadBytes();
/**
* uint64 rpc_read_time_elapsed_us = 6;
* @return The rpcReadTimeElapsedUs.
*/
long getRpcReadTimeElapsedUs();
/**
* uint64 direct_read_bytes = 7;
* @return The directReadBytes.
*/
long getDirectReadBytes();
/**
* uint64 direct_read_time_elapsed_us = 8;
* @return The directReadTimeElapsedUs.
*/
long getDirectReadTimeElapsedUs();
/**
*
* If cache hit, base_stream_stats is not set.
*
*
* optional .cz.proto.FileInputStreamStats base_stream_stats = 9;
* @return Whether the baseStreamStats field is set.
*/
boolean hasBaseStreamStats();
/**
*
* If cache hit, base_stream_stats is not set.
*
*
* optional .cz.proto.FileInputStreamStats base_stream_stats = 9;
* @return The baseStreamStats.
*/
cz.proto.FileInputStreamStats getBaseStreamStats();
/**
*
* If cache hit, base_stream_stats is not set.
*
*
* optional .cz.proto.FileInputStreamStats base_stream_stats = 9;
*/
cz.proto.FileInputStreamStatsOrBuilder getBaseStreamStatsOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy