All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alluxio.master.scheduler.JournaledJobMetaStore Maven / Gradle / Ivy

The newest version!
/*
 * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
 * (the "License"). You may not use this work except in compliance with the License, which is
 * available at www.apache.org/licenses/LICENSE-2.0
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied, as more fully set forth in the License.
 *
 * See the NOTICE file distributed with this work for information regarding copyright ownership.
 */

package alluxio.master.scheduler;

import alluxio.collections.ConcurrentHashSet;
import alluxio.conf.Configuration;
import alluxio.conf.PropertyKey;
import alluxio.exception.runtime.UnavailableRuntimeException;
import alluxio.exception.status.UnavailableException;
import alluxio.master.file.DefaultFileSystemMaster;
import alluxio.master.job.JobFactoryProducer;
import alluxio.master.journal.JournalContext;
import alluxio.master.journal.Journaled;
import alluxio.master.journal.checkpoint.CheckpointName;
import alluxio.proto.journal.Journal;
import alluxio.resource.CloseableIterator;
import alluxio.scheduler.job.Job;
import alluxio.scheduler.job.JobMetaStore;

import com.google.common.collect.Iterators;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Set;

/**
 * A journaled job meta store.
 */
public class JournaledJobMetaStore implements JobMetaStore, Journaled {
  private static final Logger LOG = LoggerFactory.getLogger(JournaledJobMetaStore.class);
  private final DefaultFileSystemMaster mFileSystemMaster;
  private final Set> mExistingJobs = new ConcurrentHashSet<>();
  private static final boolean RESTORE_JOB_FROM_JOURNAL = Configuration.getBoolean(
      PropertyKey.MASTER_SCHEDULER_RESTORE_JOB_FROM_JOURNAL);

  /**
   * Creates a new instance of {@link JournaledJobMetaStore}.
   *
   * @param fileSystemMaster the file system master
   */
  public JournaledJobMetaStore(DefaultFileSystemMaster fileSystemMaster) {
    mFileSystemMaster = fileSystemMaster;
  }

  @Override
  public CloseableIterator getJournalEntryIterator() {
    return CloseableIterator.noopCloseable(
        Iterators.transform(mExistingJobs.iterator(), Job::toJournalEntry));
  }

  @Override
  public boolean processJournalEntry(Journal.JournalEntry entry) {
    if (!RESTORE_JOB_FROM_JOURNAL) {
      return false;
    }
    if (!entry.hasLoadJob() && !entry.hasCopyJob() && !entry.hasMoveJob()) {
      return false;
    }
    else {
      try {
        Job job = JobFactoryProducer.create(entry, mFileSystemMaster).create();
        mExistingJobs.remove(job);
        mExistingJobs.add(job);
      } catch (RuntimeException e) {
        LOG.error("Failed to create job from journal entry: {}", entry, e);
      }
    }
    return true;
  }

  @Override
  public void resetState() {
    mExistingJobs.clear();
  }

  @Override
  public CheckpointName getCheckpointName() {
    return CheckpointName.SCHEDULER;
  }

  @Override
  public void updateJob(Job job) {
    try (JournalContext context = mFileSystemMaster.createJournalContext()) {
      context.append(job.toJournalEntry());
      mExistingJobs.remove(job);
      mExistingJobs.add(job);
    } catch (UnavailableException e) {
      throw new UnavailableRuntimeException(
          "There is an ongoing backup running, please submit later", e);
    }
  }

  @Override
  public Set> getJobs() {
    return mExistingJobs;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy