Tabnine Logo
OrcWriterStats.updateSizeInBytes
Code IndexAdd Tabnine to your IDE (free)

How to use
updateSizeInBytes
method
in
io.prestosql.orc.OrcWriterStats

Best Java code snippets using io.prestosql.orc.OrcWriterStats.updateSizeInBytes (Showing top 6 results out of 315)

origin: io.prestosql/presto-orc

@Override
public void close()
    throws IOException
{
  if (closed) {
    return;
  }
  closed = true;
  stats.updateSizeInBytes(-previouslyRecordedSizeInBytes);
  previouslyRecordedSizeInBytes = 0;
  flushStripe(CLOSED);
  orcDataSink.close();
}
origin: prestosql/presto

@Override
public void close()
    throws IOException
{
  if (closed) {
    return;
  }
  closed = true;
  stats.updateSizeInBytes(-previouslyRecordedSizeInBytes);
  previouslyRecordedSizeInBytes = 0;
  flushStripe(CLOSED);
  orcDataSink.close();
}
origin: prestosql/presto

stats.updateSizeInBytes(previouslyRecordedSizeInBytes);
origin: io.prestosql/presto-orc

stats.updateSizeInBytes(previouslyRecordedSizeInBytes);
origin: io.prestosql/presto-orc

stats.updateSizeInBytes(recordedSizeInBytes - previouslyRecordedSizeInBytes);
previouslyRecordedSizeInBytes = recordedSizeInBytes;
origin: prestosql/presto

stats.updateSizeInBytes(recordedSizeInBytes - previouslyRecordedSizeInBytes);
previouslyRecordedSizeInBytes = recordedSizeInBytes;
io.prestosql.orcOrcWriterStatsupdateSizeInBytes

Popular methods of OrcWriterStats

  • <init>
  • getFlushStats
  • getWriterSizeInBytes
  • recordStripeWritten

Popular in Java

  • Making http requests using okhttp
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • String (java.lang)
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now