blob: 504ae1751d2e9b2ace51afb9787b7897ed6e6686 [file] [log] [blame]
// 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.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.Serialization;
using Org.Apache.REEF.Common.Catalog;
using Org.Apache.REEF.Common.Evaluator;
using Org.Apache.REEF.Driver.Bridge.Avro;
using Org.Apache.REEF.Driver.Bridge.Clr2java;
using Org.Apache.REEF.Driver.Evaluator;
using Org.Apache.REEF.Utilities.Diagnostics;
using Org.Apache.REEF.Utilities.Logging;
namespace Org.Apache.REEF.Driver.Bridge.Events
{
[DataContract]
internal sealed class EvaluatorRequestor : IEvaluatorRequestor
{
internal const char BatchIdxSeparator = '_';
private static readonly Logger LOGGER = Logger.GetLogger(typeof(EvaluatorRequestor));
private static readonly IDictionary<string, IEvaluatorDescriptor> EvaluatorDescriptorsDictionary =
new Dictionary<string, IEvaluatorDescriptor>();
private readonly DefinedRuntimes runtimes;
internal EvaluatorRequestor(IEvaluatorRequestorClr2Java clr2Java)
{
Clr2Java = clr2Java;
byte[] data = Clr2Java.GetDefinedRuntimes();
runtimes = DefinedRuntimesSerializer.FromBytes(data);
LOGGER.Log(Level.Info, "Defined runtimes " + ((runtimes.runtimeNames == null) ? "null" : string.Join(",", runtimes.runtimeNames)));
}
/// <summary>
/// A map of EvaluatorBatchID + BatchIdxSeparator + (Evaluator number in the batch) to
/// the Evaluator descriptor for the Evaluator.
/// </summary>
internal static IDictionary<string, IEvaluatorDescriptor> Evaluators
{
get { return EvaluatorDescriptorsDictionary; }
}
public IResourceCatalog ResourceCatalog { get; set; }
[DataMember]
private IEvaluatorRequestorClr2Java Clr2Java { get; set; }
public void Submit(IEvaluatorRequest request)
{
LOGGER.Log(Level.Info, "Submitting request for {0} evaluators and {1} MB memory and {2} core to rack {3} runtime {4}, nodeNames to schedule {5} and RelaxLocality is {6}.",
request.Number, request.MemoryMegaBytes, request.VirtualCore, request.Rack, request.RuntimeName, string.Join(",", request.NodeNames.ToArray()), request.RelaxLocality);
lock (Evaluators)
{
for (var i = 0; i < request.Number; i++)
{
if (!string.IsNullOrWhiteSpace(request.RuntimeName))
{
if (runtimes.runtimeNames != null && !runtimes.runtimeNames.Contains(request.RuntimeName))
{
throw new ArgumentException(string.Format("Requested runtime {0} is not in the defined runtimes list {1}", request.RuntimeName, string.Join(",", runtimes.runtimeNames)));
}
}
var descriptor = new EvaluatorDescriptorImpl(new NodeDescriptorImpl(), EvaluatorType.CLR, request.MemoryMegaBytes, request.VirtualCore, request.RuntimeName, request.Rack);
var key = string.Format(CultureInfo.InvariantCulture, "{0}{1}{2}", request.EvaluatorBatchId, BatchIdxSeparator, i);
try
{
Evaluators.Add(key, descriptor);
}
catch (ArgumentException e)
{
Exceptions.Caught(e, Level.Error, string.Format(CultureInfo.InvariantCulture, "EvaluatorBatchId [{0}] already exists.", key), LOGGER);
Exceptions.Throw(new InvalidOperationException("Cannot use evaluator id " + key, e), LOGGER);
}
}
}
Clr2Java.Submit(request);
}
public EvaluatorRequestBuilder NewBuilder()
{
return new EvaluatorRequestBuilder();
}
public EvaluatorRequestBuilder NewBuilder(IEvaluatorRequest request)
{
return new EvaluatorRequestBuilder(request);
}
public void Dispose()
{
}
}
}