Package org.apache.flink.runtime.jobmanager.accumulators

Examples of org.apache.flink.runtime.jobmanager.accumulators.AccumulatorManager


   
    // Create the accumulator manager, with same archiving limit as web
    // interface. We need to store the accumulators for at least one job.
    // Otherwise they might be deleted before the client requested the
    // accumulator results.
    this.accumulatorManager = new AccumulatorManager(Math.min(1, archived_items));


    // Determine own RPC address
    final InetSocketAddress rpcServerAddress = new InetSocketAddress(ipcAddress, ipcPort);
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.jobmanager.accumulators.AccumulatorManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.