com.feedzai.fos.api.KryoScorer Maven / Gradle / Ivy
/*
* $#
* FOS API
*
* Copyright (C) 2013 Feedzai SA
*
* This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU
* Lesser General Public License version 3 (the "GPL License"). You may choose either license to govern
* your use of this software only upon the condition that you accept all of the terms of either the Apache
* License or the LGPL License.
*
* You may obtain a copy of the Apache License and the LGPL License at:
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Unless required by applicable law or agreed to in writing, software distributed under the Apache License
* or the LGPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the Apache License and the LGPL License for the specific language governing
* permissions and limitations under the Apache License and the LGPL License.
* #$
*/
package com.feedzai.fos.api;
import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
import com.feedzai.fos.common.kryo.CustomUUIDSerializer;
import com.feedzai.fos.common.kryo.ScoringRequestEnvelope;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.UUID;
/**
* This class implements FOS Scorer interface that
* uses the Kryo scoring backend for increased performance boost (~5x RMI performance)
* in remote scoring
*
*
* This class is thread safe. Multiple simultaneous scoring requests can be performed
* from multiple threads. Each simultaneous scoring requests will run
* on its own socket connection to the Kryo backend.
*
* Socket connections are pooled
*
* @author Miguel Duarte ([email protected])
*/
public class KryoScorer implements Scorer {
private final static Logger logger = LoggerFactory.getLogger(KryoScorer.class);
List remoteConnections = new ArrayList<>();
private final String host;
private final int port;
public KryoScorer(String host, int port) {
this.host = host;
this.port = port;
}
@Override
public List score(List modelIds, Object[] scorable) throws FOSException {
RemoteConnection con = null;
try {
con = getConnection();
List scores = con.score(modelIds, scorable);
return scores;
} catch (Exception e) {
throw new FOSException(e.getMessage(), e);
} finally {
releaseConnection(con);
}
}
@Override
public List score(UUID modelId, List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy