0
各タプルにScrubFunctionを適用し、更新された値でタプルを返そうとしています。カスケード - cascading.tuple.TupleException:値の設定に失敗しました
しかし、私のような例外を取得しています。..
Caused by: cascading.tuple.TupleException: failed to set a value, tuple may not be initialized with values, is zero length
サンプルコード:
TupleEntry argument = functionCall.getArguments();
Tuple result = new Tuple();
result.setInteger(0, argument.getInteger(0));
result.setString(1, argument.getString(1).toUpperCase());
result.setString(2, argument.getString(2));
result.setString(3, argument.getString(3));
result.setString(4, argument.getString(4));
result.setString(5, argument.getString(5));
functionCall.getOutputCollector().add(result);
何私がTuple
でいくつかのフィールドを更新し、更新された値を返すようにしたい場合。
TupleEntry
で直接更新して返品することはできますか?