Search in sources :

Example 11 with Slice

use of com.datatorrent.netlet.util.Slice in project apex-core by apache.

the class FSStatsRecorder method recordOperators.

@Override
public void recordOperators(List<OperatorInfo> operatorList, long timestamp) throws IOException {
    for (OperatorInfo operatorInfo : operatorList) {
        FSPartFileCollection operatorStorage;
        if (!logicalOperatorStorageMap.containsKey(operatorInfo.name)) {
            operatorStorage = new FSPartFileCollection();
            operatorStorage.setBasePath(basePath + "/operators/" + operatorInfo.name);
            operatorStorage.setup();
            operatorStorage.writeMetaData((VERSION + "\n").getBytes());
            logicalOperatorStorageMap.put(operatorInfo.name, operatorStorage);
        } else {
            operatorStorage = logicalOperatorStorageMap.get(operatorInfo.name);
        }
        if (!knownOperators.contains(operatorInfo.id)) {
            knownOperators.add(operatorInfo.id);
            Map<String, Object> fieldMap = extractRecordFields(operatorInfo, "meta");
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            Slice f = streamCodec.toByteArray(fieldMap);
            bos.write(f.buffer, f.offset, f.length);
            bos.write("\n".getBytes());
            queue.add(new WriteOperation(operatorStorage, bos.toByteArray(), true));
        }
        Map<String, Object> fieldMap = extractRecordFields(operatorInfo, "stats");
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        Slice f = streamCodec.toByteArray(fieldMap);
        bos.write((operatorInfo.id + ":").getBytes());
        bos.write((String.valueOf(timestamp) + ":").getBytes());
        bos.write(f.buffer, f.offset, f.length);
        bos.write("\n".getBytes());
        queue.add(new WriteOperation(operatorStorage, bos.toByteArray(), false));
    }
}
Also used : FSPartFileCollection(com.datatorrent.stram.util.FSPartFileCollection) Slice(com.datatorrent.netlet.util.Slice) OperatorInfo(com.datatorrent.stram.webapp.OperatorInfo) ByteArrayOutputStream(java.io.ByteArrayOutputStream)

Example 12 with Slice

use of com.datatorrent.netlet.util.Slice in project beam by apache.

the class ApexTimerInternals method fireReadyTimers.

/**
   * Fire the timers that are ready. These are the timers
   * that are registered to be triggered at a time before the current time.
   * Timer processing may register new timers, which can cause the returned
   * timestamp to be before the the current time. The caller may repeat
   * the call until such backdated timers are cleared.
   * @return minimum timestamp of registered timers.
   */
public long fireReadyTimers(long currentTime, TimerProcessor<K> timerProcessor, TimeDomain timeDomain) {
    TimerSet timers = getTimerSet(timeDomain);
    // move minTimestamp first,
    // timer additions that result from firing may modify it
    timers.minTimestamp = currentTime;
    // we keep the timers to return in a different list and launch them later
    // because we cannot prevent a trigger from registering another timer,
    // which would lead to concurrent modification exception.
    Multimap<Slice, TimerInternals.TimerData> toFire = HashMultimap.create();
    Iterator<Map.Entry<Slice, Set<Slice>>> it = timers.activeTimers.entrySet().iterator();
    while (it.hasNext()) {
        Map.Entry<Slice, Set<Slice>> keyWithTimers = it.next();
        Iterator<Slice> timerIt = keyWithTimers.getValue().iterator();
        while (timerIt.hasNext()) {
            try {
                TimerData timerData = CoderUtils.decodeFromByteArray(timers.timerDataCoder, timerIt.next().buffer);
                if (timerData.getTimestamp().isBefore(currentTime)) {
                    toFire.put(keyWithTimers.getKey(), timerData);
                    timerIt.remove();
                }
            } catch (CoderException e) {
                throw new RuntimeException(e);
            }
        }
        if (keyWithTimers.getValue().isEmpty()) {
            it.remove();
        }
    }
    // fire ready timers
    if (!toFire.isEmpty()) {
        for (Slice keyBytes : toFire.keySet()) {
            try {
                K key = CoderUtils.decodeFromByteArray(keyCoder, keyBytes.buffer);
                timerProcessor.fireTimer(key, toFire.get(keyBytes));
            } catch (CoderException e) {
                throw new RuntimeException(e);
            }
        }
    }
    return timers.minTimestamp;
}
Also used : Set(java.util.Set) HashSet(java.util.HashSet) Slice(com.datatorrent.netlet.util.Slice) CoderException(org.apache.beam.sdk.coders.CoderException) HashMap(java.util.HashMap) Map(java.util.Map)

Aggregations

Slice (com.datatorrent.netlet.util.Slice)12 ByteArrayOutputStream (java.io.ByteArrayOutputStream)7 IOException (java.io.IOException)4 ObjectMapperString (com.datatorrent.common.util.ObjectMapperString)3 HashMap (java.util.HashMap)2 Map (java.util.Map)2 Sink (com.datatorrent.api.Sink)1 StreamCodec (com.datatorrent.api.StreamCodec)1 PurgeRequestTuple (com.datatorrent.bufferserver.packet.PurgeRequestTuple)1 ResetRequestTuple (com.datatorrent.bufferserver.packet.ResetRequestTuple)1 Tuple (com.datatorrent.bufferserver.packet.Tuple)1 CircularBuffer (com.datatorrent.netlet.util.CircularBuffer)1 EventsAgent (com.datatorrent.stram.client.EventsAgent)1 SweepableReservoir (com.datatorrent.stram.engine.SweepableReservoir)1 FSPartFileCollection (com.datatorrent.stram.util.FSPartFileCollection)1 ContainerInfo (com.datatorrent.stram.webapp.ContainerInfo)1 OperatorInfo (com.datatorrent.stram.webapp.OperatorInfo)1 BeanInfo (java.beans.BeanInfo)1 PropertyDescriptor (java.beans.PropertyDescriptor)1 Method (java.lang.reflect.Method)1