2

whisper-mergeを使用して 2 つのファイルをマージしようとしていwspます。どちらも同じ保持戦略を持っており、一方は他方よりも古いデータを持っているだけです。

実行するwhisper-merge oldfile.wsp newfile.wspと、このエラーが発生します

Traceback (most recent call last):
  File "/usr/local/src/whisper-0.9.12/bin/whisper-merge.py", line 32, in <module>
    whisper.merge(path_from, path_to)
  File "/usr/local/lib/python2.7/dist-packages/whisper.py", line 821, in merge
    (timeInfo, values) = fetch(path_from, fromTime, untilTime)
TypeError: 'NoneType' object is not iterable

何か案は?

2 つのファイルのメタデータ出力は次のとおりです。

4

2 に答える 2

7

whisper.py の 812 行目は、複数のアーカイブを含むファイルで壊れています。 https://github.com/graphite-project/whisper/blob/0.9.12/whisper.py#L812

fromTime = int(time.time()) - headerFrom['maxRetention']

修正するには、行 813 の直後で、アーカイブ保持に基づいて fromTime を割り当てます。 https://github.com/graphite-project/whisper/blob/0.9.12/whisper.py#L813

for archive in archives: # this line already exists
  fromTime = int(time.time()) - archive['retention'] # add this line
于 2014-07-31T00:32:36.083 に答える
1

からのスニペットwhisper.py

def fetch(path,fromTime,untilTime=None):
    """fetch(path,fromTime,untilTime=None)

    path is a string
    fromTime is an epoch time
    untilTime is also an epoch time, but defaults to now.

    Returns a tuple of (timeInfo, valueList)
    where timeInfo is itself a tuple of (fromTime, untilTime, step)

    Returns None if no data can be returned
    """
    fh = open(path,'rb')
    return file_fetch(fh, fromTime, untilTime)

whisper.fetch()が を返してNoneいることを示唆しており、(トレースバックの最終行とともに)path_fromファイルに問題があることを示唆しています。
もう少し深く見てみると、(少なくとも明示的には)whisper.file_fetch()戻ることができる場所が 2 つあります。None

def file_fetch(fh, fromTime, untilTime):
    header = __readHeader(fh)
    now = int( time.time() )
    if untilTime is None:
        untilTime = now
    fromTime = int(fromTime)
    untilTime = int(untilTime)

    # Here we try and be flexible and return as much data as we can.
    # If the range of data is from too far in the past or fully in the future, we
    # return nothing
    if (fromTime > untilTime):
        raise InvalidTimeInterval("Invalid time interval: from time '%s' is after until time '%s'" % (fromTime, untilTime))

    oldestTime = now - header['maxRetention']
    # Range is in the future
    if fromTime > now:
        return None               # <== Here
    # Range is beyond retention
    if untilTime < oldestTime:
        return None               # <== ...and here
    ...
于 2014-07-30T07:21:29.617 に答える