Examples of KeepAliveDataSource


Examples of com.asakusafw.runtime.directio.keepalive.KeepAliveDataSource

                    profile.getPath()));
        }
        HadoopDataSourceProfile hProfile = HadoopDataSourceProfile.convert(profile, conf);
        this.core = new HadoopDataSourceCore(hProfile);
        if (hProfile.getKeepAliveInterval() > 0) {
            this.core = new KeepAliveDataSource(core, hProfile.getKeepAliveInterval());
        }
        if (LOG.isDebugEnabled()) {
            LOG.debug(MessageFormat.format(
                    "Finish configuring Hadoop data source: {0}",
                    hProfile));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.