blob: 66e093c48cb6e3612d56a619c0ae865d55f055f2 [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.
*/
package org.apache.ignite.examples.computegrid;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteException;
import org.apache.ignite.Ignition;
import org.apache.ignite.cluster.ClusterNode;
import org.apache.ignite.compute.ComputeJob;
import org.apache.ignite.compute.ComputeJobAdapter;
import org.apache.ignite.compute.ComputeJobResult;
import org.apache.ignite.compute.ComputeJobResultPolicy;
import org.apache.ignite.compute.ComputeTask;
import org.apache.ignite.compute.ComputeTaskAdapter;
import org.apache.ignite.compute.ComputeTaskContinuousMapper;
import org.apache.ignite.compute.ComputeTaskNoResultCache;
import org.apache.ignite.examples.ExampleNodeStartup;
import org.apache.ignite.resources.TaskContinuousMapperResource;
import org.jetbrains.annotations.NotNull;
/**
* Demonstrates usage of continuous mapper. With continuous mapper
* it is possible to continue mapping jobs asynchronously even after
* initial {@link ComputeTask#map(List, Object)} method completes.
* <p>
* String "Hello Continuous Mapper" is passed as an argument for execution
* of {@link ComputeContinuousMapperExample.ContinuousMapperTask}. As an outcome, participating
* nodes will print out a single word from the passed in string and return
* number of characters in that word. However, to demonstrate continuous
* mapping, next word will be mapped to a node only after the result from
* previous word has been received.
* <p>
* Remote nodes should always be started with special configuration file which
* enables P2P class loading: {@code 'ignite.{sh|bat} examples/config/example-ignite.xml'}.
* <p>
* Alternatively you can run {@link ExampleNodeStartup} in another JVM which will start node
* with {@code examples/config/example-ignite.xml} configuration.
*/
public class ComputeContinuousMapperExample {
/**
* Executes example.
*
* @param args Command line arguments, none required.
* @throws IgniteException If example execution failed.
*/
public static void main(String[] args) throws IgniteException {
System.out.println();
System.out.println(">>> Compute continuous mapper example started.");
try (Ignite ignite = Ignition.start("examples/config/example-ignite.xml")) {
int phraseLen = ignite.compute().execute(ContinuousMapperTask.class, "Hello Continuous Mapper");
System.out.println();
System.out.println(">>> Total number of characters in the phrase is '" + phraseLen + "'.");
}
}
/**
* This task demonstrates how continuous mapper is used. The passed in phrase
* is split into multiple words and next word is sent out for processing only
* when the result for the previous word was received.
* <p>
* Note that annotation {@link ComputeTaskNoResultCache} is optional and tells Ignite
* not to accumulate results from individual jobs. In this example we increment
* total character count directly in {@link #result(ComputeJobResult, List)} method,
* and therefore don't need to accumulate them be be processed at reduction step.
*/
@ComputeTaskNoResultCache
private static class ContinuousMapperTask extends ComputeTaskAdapter<String, Integer> {
/** This field will be injected with task continuous mapper. */
@TaskContinuousMapperResource
private ComputeTaskContinuousMapper mapper;
/** Word queue. */
private final Queue<String> words = new ConcurrentLinkedQueue<>();
/** Total character count. */
private final AtomicInteger totalChrCnt = new AtomicInteger(0);
/** {@inheritDoc} */
@NotNull @Override public Map<? extends ComputeJob, ClusterNode> map(List<ClusterNode> nodes, String phrase) {
if (phrase == null || phrase.isEmpty())
throw new IgniteException("Phrase is empty.");
// Populate word queue.
Collections.addAll(words, phrase.split(" "));
// Sends first word.
sendWord();
// Since we have sent at least one job, we are allowed to return
// 'null' from map method.
return null;
}
/** {@inheritDoc} */
@Override public ComputeJobResultPolicy result(ComputeJobResult res, List<ComputeJobResult> rcvd) {
// If there is an error, fail-over to another node.
if (res.getException() != null)
return super.result(res, rcvd);
// Add result to total character count.
totalChrCnt.addAndGet(res.<Integer>getData());
sendWord();
// If next word was sent, keep waiting, otherwise work queue is empty and we reduce.
return ComputeJobResultPolicy.WAIT;
}
/** {@inheritDoc} */
@Override public Integer reduce(List<ComputeJobResult> results) {
return totalChrCnt.get();
}
/**
* Sends next queued word to the next node implicitly selected by load balancer.
*/
private void sendWord() {
// Remove first word from the queue.
String word = words.poll();
if (word != null) {
// Map next word.
mapper.send(new ComputeJobAdapter(word) {
@Override public Object execute() {
String word = argument(0);
System.out.println();
System.out.println(">>> Printing '" + word + "' from ignite job at time: " + new Date());
int cnt = word.length();
// Sleep for some time so it will be visually noticeable that
// jobs are executed sequentially.
try {
Thread.sleep(1000);
}
catch (InterruptedException ignored) {
// No-op.
}
return cnt;
}
});
}
}
}
}