All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.paifeaturestore.domain.IFeatureView Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.aliyun.openservices.paifeaturestore.domain;

import com.aliyun.openservices.paifeaturestore.model.FeatureView;

import java.util.List;
import java.util.Map;

public interface IFeatureView {

    FeatureResult getOnlineFeatures(String[] joinIds) throws Exception;

    FeatureResult getOnlineFeatures(String[] joinIds,String[] features, Map aliasFields) throws Exception;

    String getName();

    String getFeatureEntityName();

    String getType();

    FeatureView getFeatureView();

    FeatureEntity getFeatureEntity();

    // write features to featurestore online table, only support featuredb
    void writeFeatures(List> data);

    // flush all data to featurestore, use writeFeatures to write data, when finish only call once
    void writeFlush();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy