mirror of https://github.com/apache/lucene.git
SOLR-14478: Allow the diff Stream Evaluator to operate on the rows of a matrix
This commit is contained in:
parent
fe2135963c
commit
f1db56afaf
|
@ -19,6 +19,7 @@ package org.apache.solr.client.solrj.io.eval;
|
|||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Locale;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.IntStream;
|
||||
|
@ -26,7 +27,7 @@ import java.util.stream.IntStream;
|
|||
import org.apache.solr.client.solrj.io.stream.expr.StreamExpression;
|
||||
import org.apache.solr.client.solrj.io.stream.expr.StreamFactory;
|
||||
|
||||
public class TimeDifferencingEvaluator extends RecursiveNumericEvaluator implements ManyValueWorker{
|
||||
public class TimeDifferencingEvaluator extends RecursiveObjectEvaluator implements ManyValueWorker{
|
||||
|
||||
protected static final long serialVersionUID = 1L;
|
||||
|
||||
|
@ -41,6 +42,7 @@ public class TimeDifferencingEvaluator extends RecursiveNumericEvaluator impleme
|
|||
if (!(1 == values.length || values.length == 2)) {
|
||||
throw new IOException(String.format(Locale.ROOT, "%s(...) only works with 1 or 2 values but %d were provided", constructingFactory.getFunctionName(getClass()), values.length));
|
||||
}
|
||||
if (values[0] instanceof List) {
|
||||
List<Number> timeseriesValues = (List<Number>) values[0];
|
||||
Number lagValue = 1;
|
||||
|
||||
|
@ -65,5 +67,57 @@ public class TimeDifferencingEvaluator extends RecursiveNumericEvaluator impleme
|
|||
return IntStream.range(lag, timeseriesValues.size())
|
||||
.mapToObj(n -> (timeseriesValues.get(n).doubleValue() - timeseriesValues.get(n - lag).doubleValue()))
|
||||
.collect(Collectors.toList());
|
||||
} else if(values[0] instanceof Matrix) {
|
||||
|
||||
//Diff each row of the matrix
|
||||
|
||||
Matrix matrix = (Matrix)values[0];
|
||||
double[][] data = matrix.getData();
|
||||
double[][] diffedData = new double[data.length][];
|
||||
Number lagValue = 1;
|
||||
|
||||
if (2 == values.length) {
|
||||
lagValue = (Number) values[1];
|
||||
if (!(lagValue instanceof Number)) {
|
||||
throw new IOException(String.format(Locale.ROOT, "Invalid expression %s - found type %s for the second value, expecting a Number", toExpression(constructingFactory), values[1].getClass().getSimpleName()));
|
||||
}
|
||||
}
|
||||
|
||||
int lag = lagValue.intValue();
|
||||
|
||||
for(int i=0; i<data.length; i++) {
|
||||
double[] row = data[i];
|
||||
List<Double> timeseriesValues = new ArrayList(row.length);
|
||||
for(double d : row) {
|
||||
timeseriesValues.add(d);
|
||||
}
|
||||
|
||||
List<Number> diffedList = IntStream.range(lag, timeseriesValues.size())
|
||||
.mapToObj(n -> (timeseriesValues.get(n).doubleValue() - timeseriesValues.get(n - lag).doubleValue()))
|
||||
.collect(Collectors.toList());
|
||||
double[] diffedRow = new double[diffedList.size()];
|
||||
for(int r=0; r<diffedList.size(); r++) {
|
||||
diffedRow[r] = diffedList.get(r).doubleValue();
|
||||
}
|
||||
diffedData[i] = diffedRow;
|
||||
}
|
||||
|
||||
Matrix diffedMatrix = new Matrix(diffedData);
|
||||
diffedMatrix.setRowLabels(matrix.getRowLabels());
|
||||
List<String> columns = matrix.getColumnLabels();
|
||||
if(columns != null) {
|
||||
List<String> newColumns = new ArrayList(columns.size() - lag);
|
||||
|
||||
for (int i = lag; i < columns.size(); i++) {
|
||||
newColumns.add(columns.get(i));
|
||||
}
|
||||
|
||||
diffedMatrix.setColumnLabels(newColumns);
|
||||
}
|
||||
return diffedMatrix;
|
||||
|
||||
} else {
|
||||
throw new IOException(String.format(Locale.ROOT, "Invalid expression %s - first parameter must be list of matrix", toExpression(constructingFactory)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4062,6 +4062,42 @@ public class MathExpressionTest extends SolrCloudTestCase {
|
|||
assertEquals((double)out.get(20), 22.92, 0.009);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testTimeDifferencingMatrix() throws Exception {
|
||||
String cexpr = "let(echo=\"c, d\",\n" +
|
||||
" a=matrix(array(1,2,3,4,5),array(7.5,9,11,15.5,50.2)),\n" +
|
||||
" b=setColumnLabels(a, array(\"a\",\"b\",\"c\",\"d\",\"e\")),\n" +
|
||||
" c=diff(b, 2),\n" +
|
||||
" d=getColumnLabels(c))";
|
||||
ModifiableSolrParams paramsLoc = new ModifiableSolrParams();
|
||||
paramsLoc.set("expr", cexpr);
|
||||
paramsLoc.set("qt", "/stream");
|
||||
String url = cluster.getJettySolrRunners().get(0).getBaseUrl().toString()+"/"+COLLECTIONORALIAS;
|
||||
TupleStream solrStream = new SolrStream(url, paramsLoc);
|
||||
StreamContext context = new StreamContext();
|
||||
solrStream.setStreamContext(context);
|
||||
List<Tuple> tuples = getTuples(solrStream);
|
||||
assertTrue(tuples.size() == 1);
|
||||
List<List<Number>> matrix = (List<List<Number>>)tuples.get(0).get("c");
|
||||
List<String> columnsLabels = (List<String>)tuples.get(0).get("d");
|
||||
assertEquals(columnsLabels.size(), 3);
|
||||
assertEquals(columnsLabels.get(0), "c");
|
||||
assertEquals(columnsLabels.get(1), "d");
|
||||
assertEquals(columnsLabels.get(2), "e");
|
||||
assertEquals(matrix.size(), 2);
|
||||
List<Number> row1 = matrix.get(0);
|
||||
List<Number> row2 = matrix.get(1);
|
||||
assertEquals(row1.size(), 3);
|
||||
assertEquals(row1.get(0).doubleValue(), 2.0, 0);
|
||||
assertEquals(row1.get(1).doubleValue(), 2.0, 0);
|
||||
assertEquals(row1.get(2).doubleValue(), 2.0, 0);
|
||||
assertEquals(row2.size(), 3 );
|
||||
assertEquals(row2.get(0).doubleValue(), 3.5, 0);
|
||||
assertEquals(row2.get(1).doubleValue(), 6.5, 0);
|
||||
assertEquals(row2.get(2).doubleValue(), 39.2, 0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTimeDifferencingDefaultLag() throws Exception {
|
||||
String cexpr = "diff(array(1709.0, 1621.0, 1973.0, 1812.0, 1975.0, 1862.0, 1940.0, 2013.0, 1596.0, 1725.0, 1676.0, 1814.0, 1615.0, 1557.0, 1891.0, 1956.0, 1885.0, 1623.0, 1903.0, 1997.0))";
|
||||
|
|
Loading…
Reference in New Issue