Package org.apache.flink.runtime.execution.librarycache

Source Code of org.apache.flink.runtime.execution.librarycache.BlobLibraryCacheManagerTest

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.flink.runtime.execution.librarycache;

import org.apache.flink.configuration.ConfigConstants;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.configuration.GlobalConfiguration;
import org.apache.flink.runtime.blob.BlobClient;
import org.apache.flink.runtime.blob.BlobKey;
import org.apache.flink.runtime.blob.BlobServer;
import org.apache.flink.runtime.jobgraph.JobID;
import org.junit.Test;
import static org.junit.Assert.*;

import java.io.File;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.List;

public class BlobLibraryCacheManagerTest {

  @Test
  public void testLibraryCacheManagerCleanup(){
    Configuration config = new Configuration();

    config.setLong(ConfigConstants.LIBRARY_CACHE_MANAGER_CLEANUP_INTERVAL, 1);
    GlobalConfiguration.includeConfiguration(config);

    JobID jid = new JobID();
    List<BlobKey> keys = new ArrayList<BlobKey>();
    BlobServer server = null;
    LibraryCacheManager libraryCacheManager = null;

    final byte[] buf = new byte[128];

    try {
      server = new BlobServer();
      InetSocketAddress blobSocketAddress = new InetSocketAddress(server.getServerPort());
      BlobClient bc = new BlobClient(blobSocketAddress);

      keys.add(bc.put(buf));
      buf[0] += 1;
      keys.add(bc.put(buf));

      libraryCacheManager = new BlobLibraryCacheManager(server, GlobalConfiguration.getConfiguration());
      libraryCacheManager.registerJob(jid, keys);

      List<File> files = new ArrayList<File>();

      for (BlobKey key: keys){
        files.add(libraryCacheManager.getFile(key));
      }

      assertEquals(2, files.size());
      files.clear();

      libraryCacheManager.unregisterJob(jid);

      Thread.sleep(1500);

      int caughtExceptions = 0;

      for (BlobKey key : keys) {
        // the blob cache should no longer contain the files
        try {
          files.add(libraryCacheManager.getFile(key));
        } catch (IOException ioe) {
          caughtExceptions++;
        }
      }

      assertEquals(2, caughtExceptions);
     
      bc.close();
    }
    catch(Exception e){
      e.printStackTrace();
      fail(e.getMessage());
    }
    finally{
      if (server != null){
        try {
          server.shutdown();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }

      if (libraryCacheManager != null){
        try {
          libraryCacheManager.shutdown();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }
}
TOP

Related Classes of org.apache.flink.runtime.execution.librarycache.BlobLibraryCacheManagerTest

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.