文档

召回配置

召回配置项对应配置总览中的 RecallConfs

如何配置

PAI-REC引擎已经内置了多个召回模板,包括协同过滤(UserCollaborativeFilterRecall)向量召回(HologresVectorRecall)U2I 召回(UserCustomRecall)等等,并且支持 mysqlhologresOTS(Tablestore)等多个数据源

召回公共配置一览

每种召回配置,都会用到公共配置中的一部分,在此统一解释,单独的召回配置中则不再赘述。

配置示例:

"RecallConfs" :[    
  {
    "Name": "collaborative_filter",
    "RecallType": "UserCollaborativeFilterRecall",
    "RecallCount": 1000,
  	"RecallAlgo":"",
    "ItemType":"",
    "CacheAdapter":"",
    "CacheConfig":"",
    "CachePrefix":"",
    "CacheTime":0
  }
]

字段

类型

是否必填

描述

Name

string

召回的自定义名称,可以在 SceneConfs 中引用

RecallType

string

引擎内置召回类型,枚举值,目前支持:

●UserCollaborativeFilterRecall ●UserTopicRecall ●VectorRecall ●UserCustomRecall ●HologresVectorRecall ●ItemCollaborativeFilterRecall ●UserGroupHotRecall ●UserGlobalHotRecall ●I2IVectorRecall ●ColdStartRecall ●MilvusVectorRecall ●BeRecall ●RealTimeU2IRecall ●OnlineHologresVectorRecall ●GraphRecall ●MockRecall

RecallCount

string

召回数量

RecallAlgo

string

调用的向量模型名称,需要先再 AlgoConfs 里配置,只在实时向量召回中使用

ItemType

string

推荐物品类型

CacheAdapter

string

这里可以将召回的结果进行缓存,枚举值,目前支持Redis和localCache

CacheConfig

string

缓存的一些配置。

当使用 redis 缓存时,参考配置:"{\"host\":\"xxx.redis.rds.aliyuncs.com\", \"port\":6379,\"maxIdle\":10, \"password\":\"xxxx\"}"

当使用 localCache时,参考配置 "{\"defaultExpiration\":600, \"cleanupInterval\":600}"

CachePrefix

string

为了避免不同召回之间的缓存互相影响,这里可以对当前召回需要缓存的 item 加一个前缀

CacheTime

string

缓存时长,默认 1800s

:如果需要缓存召回数据,CacheConfig、CachePrefix、CachePrefix 一定都要配置

协同过滤(UserCollaborativeFilterRecall

协同过滤需要有两张表,一张 u2i 表,根据 user_id 获取 item 列表,一张 i2i 表,获取相似的 item,这两张表的 schema 是固定格式的。

u2i 表

表字段

类型

描述

user_id

string

用户 id,保持其唯一性

item_ids

string

用户浏览的 item id 列表,支持格式: item_id1,item_id2,item_id3.....

或者 item_id1:score1,item_id2:score,item_id3:score2......

i2i 表

表字段

类型

描述

item_id

string

item id,保持其唯一性

similar_item_ids

string

和 item_id 相似的 item 列表,支持格式:item_id1:score1,item_id2:score2,item_id3:score3......

协同过滤不同召回源的配置都是类似的,都在 UserCollaborativeDaoConf 中进行配置

hologres

配置示例:

"RecallConfs" :[    
  {
    "Name": "collaborative_filter",
    "RecallType": "UserCollaborativeFilterRecall",
    "RecallCount": 1000,
    "UserCollaborativeDaoConf": {
      "AdapterType": "hologres",
      "HologresName": "holo-info",
      "User2ItemTable": "u2i_table",
      "Item2ItemTable": "i2i_table",
      "Normalization" : "on"
    }
  }
]

UserCollaborativeDaoConfig:

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,枚举值,如 hologres、mysql、tablestore 等

HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

User2ItemTable

string

u2i 表

Item2ItemTable

string

i2i 表

Normalization

string

枚举值:on/off。是否对召回的 item 进行归一化,默认为"on"

ots(tablestore)

"RecallConfs" :[
  {
    "Name": "collaborative_filter",
    "RecallType": "UserCollaborativeFilterRecall",
    "RecallCount": 1000,
    "UserCollaborativeDaoConf": {
      "AdapterType": "tablestore",
      "TableStoreName": "tablestore_info",
      "User2ItemTable": "u2i_table",
      "Item2ItemTable": "i2i_table",
      "Normalization" : "on"
    }
  }
]

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,枚举值,如 hologres、mysql、tablestore 等

TableStoreName

string

在数据源配置(TableStoreConfs)中配置好的 tablestore 的自定义名称,如数据源配置中的 tablestore_info

User2ItemTable

string

u2i 表

Item2ItemTable

string

i2i 表

Normalization

string

枚举值:on/off。是否对召回的 item 进行归一化,默认为"on"

redis

redis 进行 collaborative_filter 流程比较特殊,单独说明。 实际上也是分两步:

  • 根据 RedisPrefix + uid 构造 key , 查询 U2I 列表, 是个string, 支持格式: item_id1,item_id2,item_id3..... 或者 item_id1:score1,item_id2:score,item_id3:score2......

  • 然后查询 I2I 列表, 根据上步查询到的多个 item_id, 使用 MGET 进行查询。 I2I 的数据也是 string , 格式如下:item_id1:score1,item_id2:score2,item_id3:score3......

配置示例:

"RecallConfs" :[
  {
    "Name": "collaborative_filter",
    "RecallType": "UserCollaborativeFilterRecall",
    "RecallCount": 1000,
    "UserCollaborativeDaoConf": {
      "AdapterType": "redis",
      "RedisName": "redis_info",
      "RedisPrefix": "cr_",
      "Normalization" : "on"
    }
  }
]

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,枚举值,如 hologres、mysql、tablestore 等

RedisName

string

在数据源配置(RedisConfs)中配置好的 redis 的自定义名称,如数据源配置中的 redis_info

RedisPrefix

string

U2I 数据的前缀,key 通过 RedisPrefix + uid 进行构造

实时 U2I2I(RealTimeU2IRecall)

获取数据的思路和协同过滤中的是一样的,只不过 U2I 的数据获取是通过 user 历史行为表实时计算的。

user 历史行为表是根据实时日志来同步更新的,这样的召回是实时的召回。

user 历史行为表

字段

类型

描述

user_id

string

用户id

item_id

string

用户浏览的 item id

event

string

事件名称

play_time

float

事件的耗时,比如视频观看的时长,不存在可以设置为0

timestamp

int

事件发生的时间戳,单位为秒

i2i 表

表字段

类型

描述

item_id

string

item id,保持其唯一性

similar_item_ids

string

和 item_id 相似的 item 列表,支持格式:item_id1:score1,item_id2:score2,item_id3:score3......

hologres

行为表建表语句:

BEGIN;
CREATE TABLE "sv_rec"."user_behavior_seq" (
  "user_id" text NOT NULL,
  "item_id" text NOT NULL,
  "event" text NOT NULL,
  "play_time" float8  NULL,
  "timestamp" int8 NOT NULL
);
CALL SET_TABLE_PROPERTY('"sv_rec"."user_behavior_seq"', 'orientation', 'column');
call set_table_property('table_name', 'distribution_key', '"user_id"');
CALL SET_TABLE_PROPERTY('"sv_rec"."user_behavior_seq"', 'clustering_key', '"user_id:asc","timestamp:desc"');
CALL SET_TABLE_PROPERTY('"sv_rec"."user_behavior_seq"', 'bitmap_columns', '"user_id","event"');
CALL SET_TABLE_PROPERTY('"sv_rec"."user_behavior_seq"', 'dictionary_encoding_columns', '"user_id:auto","item_id:auto","event"');
CALL SET_TABLE_PROPERTY('"sv_rec"."user_behavior_seq"', 'time_to_live_in_seconds', '2592000');
comment on table "sv_rec"."user_behavior_seq" is '用户实时行为序列';
comment on column "sv_rec"."user_behavior_seq"."user_id" is '用户id';
comment on column "sv_rec"."user_behavior_seq"."item_id" is 'item id';
comment on column "sv_rec"."user_behavior_seq"."event" is '事件类型';
comment on column "sv_rec"."user_behavior_seq"."play_time" is '阅读时长,播放时长';
comment on column "sv_rec"."user_behavior_seq"."timestamp" is '时间戳,单位秒';
COMMIT;

配置示例:

"RecallConfs" :[    
    {
      "Name": "RealTimeEtrecRecall",
      "RecallType": "RealTimeU2IRecall",
      "RecallCount": 200,
      "RealTimeUser2ItemDaoConf": {
        "UserTriggerDaoConf": {
          "AdapterType": "hologres",
          "HologresName": "holo_info",
          "HologresTableName": "user_behavior_table",
          "WhereClause": "event='xxx'",
          "Limit": 200,
          "EventPlayTime": "playback:5000;playvslide:5000",
          "EventWeight": "playback:1;playvslide:2",
          "WeightExpression": "(-0.2)*((currentTime-eventTime)/3600/24)",
          "WeightMode": "sum",
          "NoUsePlayTimeField": false
        },
        "Item2ItemTable": "i2i_table"
      }
    }
]

RealTimeUser2ItemDaoConf:

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,枚举值,如 hologres、mysql、tablestore 等

HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

HologresTableName

string

holo 中 user 历史行为表的表名

WhereClause

string

过滤条件,相当于 sql 中的 where 条件

Limit

int

查询数量限制,相当于 sql 中的 limit

EventPlayTime

string

事件播放时间的过滤。可以针对每个事件,进行过滤

e_sv_func_svplayback:5000 表示针对事件 e_sv_func_svplayback, play_time 的值必须大于 5000 , 不符合条件则被过滤掉。可以设置多个事件,以 ; 分隔

EventWeight

string

事件的权重, 可以定义每个事件的权重, 不设置的话,默认值为 1

WeightExpression

string

权重表达式。 以时间衰减来计算事件的权重。 currentTime 代表当前的时间戳, eventTime 代表行为表的里 timestamp

WeightMode

string

计算 trigger 权重的方式,取值为 sum 或者 max 。 默认是 sum

NoUsePlayTimeField

bool

如果不使用 play_time 字段,可以设置为 true

Item2ItemTable

string

holo 中的 i2i 表名称

向量召回(HologresVectorRecall)

目前向量召回只能使用 hologres 数据源,向量数据都存在 hologres 表中

配置示例:

"RecallConfs" :[    
 {
           "Name": "vector_recall",
           "RecallType": "HologresVectorRecall",
           "RecallCount": 100,
           "VectorDaoConf" :{
               "AdapterType": "hologres",
               "HologresName": "holo_info",
               "HologresTableName": "user_embedding_table",
               "KeyField": "user_id",
               "EmbeddingField" :"emb"
           },
           "HologresVectorConf" :{
               "VectorTable" :"item_embedding_table",
               "VectorEmbeddingField" :"emb",
               "VectorKeyField" :"item_id"
           }
        }
]

VectorDaoConf:

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,取值 hologres

HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

HologresTableName

string

holo 中对应的向量表名称

KeyField

string

向量表中的主键字段

EmbeddingField

string

向量表中存储向量的字段

HologresVectorConf:

字段

类型

是否必填

描述

VectorTable

string

holo 中 item 向量表

VectorEmbeddingField

string

item 向量表中的主键字段

VectorKeyField

string

item 向量表中存储向量的字段

VectorDaoConf 里记录的是 user 向量信息,表的定义如下

BEGIN;
CREATE TABLE "public"."graphsage_user_embedding" (
 "user_id" text NOT NULL,
 "emb" float4[] NOT NULL,
 "dt" text,
PRIMARY KEY ("user_id")
);
CALL SET_TABLE_PROPERTY('"public"."graphsage_user_embedding"', 'orientation', 'row');
CALL SET_TABLE_PROPERTY('"public"."graphsage_user_embedding"', 'clustering_key', '"user_id:asc"');
CALL SET_TABLE_PROPERTY('"public"."graphsage_user_embedding"', 'time_to_live_in_seconds', '3153600000');
comment on column "public"."graphsage_user_embedding"."user_id" is '用户ID';
comment on column "public"."graphsage_user_embedding"."emb" is '用户特征向量';
comment on column "public"."graphsage_user_embedding"."dt" is '日期 yyyyMMdd';
COMMIT;

HologresVectorConf 记录的是 item 向量, 表定义如下

BEGIN;
CREATE TABLE "public"."graphsage_item_embedding" (
 "item_id" text NOT NULL,
 "emb" float4[] NOT NULL,
PRIMARY KEY ("item_id")
);
CALL SET_TABLE_PROPERTY('"public"."graphsage_item_embedding"', 'orientation', 'column');
CALL SET_TABLE_PROPERTY('"public"."graphsage_item_embedding"', 'bitmap_columns', '"item_id"');
CALL SET_TABLE_PROPERTY('"public"."graphsage_item_embedding"', 'time_to_live_in_seconds', '3153600000');
comment on column "public"."graphsage_item_embedding"."item_id" is '物品ID';
comment on column "public"."graphsage_item_embedding"."emb" is '物品特征向量';
COMMIT;

实时向量召回(OnlineHologresVectorRecall)

实时向量召回和向量召回的实现方式是一致的,也是基于 hologres 的表数据,不同的是, user 向量不是从表里获取的,而是实时通过模型获取到的,然后去 item 向量表查数据。实现思路基本上分为三步:

  • 获取 user 相关特征,user 特征可以从数据表里查询

  • 调用向量模型,获取 user 向量。在我们的支持中,模型是部署在 EAS 上的

  • 和向量召回一样,通过 item 向量表进行查询

配置示例:

"RecallConfs" :[    
  {
      "Name": "online_vector_recall",
      "RecallType": "OnlineHologresVectorRecall",
      "RecallCount": 500,
      "UserFeatureConfs": [
        {
          "FeatureDaoConf": {
            "AdapterType": "hologres",
            "HologresName": "holo_info",
            "FeatureKey": "user:uid",
            "UserFeatureKeyName": "userid",
            "HologresTableName": "user_all_feature_table",
            "UserSelectFields": "*",
            "FeatureStore": "user"
          },
          "Features": []
        }
      ],
      "RecallAlgo": "sv_v2_mind",
      "HologresVectorConf": {
        "HologresName": "holo_info",
        "VectorTable": "item_embedding_table",
        "VectorEmbeddingField": "item_emb",
        "VectorKeyField": "item_id"
      }
    }
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 OnlineHologresVectorRecall

RecallCount

int

召回数量

RecallAlgo

string

调用的向量模型名称,需要在 AlgoConfs 里配置,具体配置参考这里

UserFeatureConfs:

字段

类型

是否必填

描述

AdapterType

string

数据源的类型,取值 hologres

HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

FeatureKey

string

这里为引擎中 user_id 的来源,user:uid 代表 user 中的 uid 特征

UserFeatureKeyName

string

user 特征表中的主键字段

HologresTableName

string

user 特征表

UserSelectFields

string

要选择哪些特征,支持"*"的写法,也可以 "f1,f2...."逗号分隔的写法

FeatureStore

string

在引擎中特征存储的位置,枚举值:user/item

HologresVectorConf:

字段

类型

是否必填

描述

HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

VectorTable

string

holo 中 item 向量表的表名

VectorEmbeddingField

string

item 向量表中存储向量的字段

VectorKeyField

string

item 向量表中的主键字段

模型 sv_v2_mind 在 AlgoConfs 里定义如下

{
"AlgoConfs": [
  {
      "Name": "sv_v2_mind",
      "Type": "EAS",
      "EasConf": {
        "Processor": "EasyRec",
        "Timeout": 100,
        "ResponseFuncName": "easyrecUserEmbResponseFunc",
        "Url": "http://xxx.vpc.cn-beijing.pai-eas.aliyuncs.com/api/predict/sv_v2_mind",
        "Auth": "xxx"
      }
  }
]
}

和排序模型的配置是一样的,不同点是 ResponseFuncName 需要固定为 easyrecUserEmbResponseFunc

U2I召回

根据 user id 来找到对应的 item 列表。这里的表定义是约定好的

u2i 表

字段

类型

描述

user_id

string

用户 id

item_ids

string

item id 列表,支持格式:item_id1,item_id2,item_id3..... 或 item_id1:recall_id1,item_id2:recall_id2..... 或 item_id1:recall_id1:score1,item_id2:recall_id2:score2.....

hologres

配置示例:

"RecallConfs" :[    
{
           "Name": "user2item_recall",
           "RecallType": "UserCustomRecall",
           "RecallCount": 500,
           "DaoConf" :{
               "AdapterType": "hologres",
               "HologresName": "holo_info",
               "HologresTableName": "user_item_table"
           }
}
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 UserCustomRecall

RecallCount

int

召回数量

DaoConf

json object

Dao 定义

  • AdapterType

string

数据源类型,取值 hologres

  • HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

  • HologresTableName

string

数据表名称

OTS(Tablestore)

配置示例:

"RecallConfs" :[    
{
           "Name": "user2item_recall",
           "RecallType": "UserCustomRecall",
           "RecallCount": 500,
           "DaoConf" :{
               "AdapterType": "tablestore",
               "TableStoreName": "ots_info",
               "TableStoreTableName": "user_item_table"
           }
}
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 UserCustomRecall

RecallCount

int

召回数量

DaoConf

json object

Dao 定义

  • AdapterType

string

数据源类型,取值 tablestore

  • TableStoreName

string

在数据源配置(TableStoreConfs)中配置好的 tablestore 的自定义名称,如数据源配置中的 tablestore_info

  • TableStoreTableName

string

数据表名称

Redis

配置示例:

"RecallConfs" :[    
{
           "Name": "user2item_recall",
           "RecallType": "UserCustomRecall",
           "RecallCount": 500,
           "DaoConf" :{
               "AdapterType": "redis",
               "RedisName": "redis_info", 
               "RedisPrefix": ""
           }
}
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 UserCustomRecall

RecallCount

int

召回数量

DaoConf

json object

Dao 定义

  • AdapterType

string

数据源类型,取值 redis

  • RedisName

string

在数据源配置(RedisConfs)中配置好的 redis 的自定义名称,如数据源配置中的 redis_info

  • RedisPrefix

string

U2I 数据的前缀,通过 RedisPrefix + uid 构造key 获取

图召回(GraphRecall)

图召回也属于 U2I 召回的一种。通过 GraphCompute 图数据库进行召回。GraphCompute 文档参考这里

配置示例:

"RecallConfs" :[    
{
  "Name": "graph_recall",
  "RecallType": "GraphRecall",
  "RecallCount": 500,
  "GraphConf": {
    "GraphName": "graph_test",
    "ItemId": "item_id",
    "QueryString": "g(\"test\").V(\"$1\").hasLabel(\"user\").outE().inV()",
    "Params": ["user.uid"]
  }
}
]

GraphConf:

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 GraphRecall

RecallCount

int

召回数量

GraphName

string

在数据源配置(GraphConfs)中配置好的 graph 的自定义名称,如数据源配置中的 graph_info

ItemId

string

graph 返回结果中,item 的主键字段

QueryString

string

图召回的查询语句,其中 $1 为占位符,需要从 Params 里面取,详细语法可以参考 Gremlin查询语法

Params

string

填充参数的来源。具体格式如:

  • user.xxx 代表从 user 的特征里面取 xxx 这个特征的值,填充到 $N 的位置

  • context.xxx 代表从接口中获取 xxx 这个特征的值,并填充到 $N 的位置

  • context.features.xxx 代表从接口中,features字段中取 xxx 这个特征的值,并填充

用户分组热门召回(UserGroupHotRecall)

分组热门召回的表的格式也是约定好的

group_hot_table

表字段

类型

描述

trigger_id

string

trigger 信息,多个特征组装

item_ids

string

item id 列表,支持格式:item_id1,item_id2,item_id3..... 或 item_id1:recall_id1,item_id2:recall_id2..... 或 item_id1:recall_id1:score1,item_id2:recall_id2:score2.....

按照用户特征和 context 信息(例如地域、机型等)组装 trigger_id

  • 按照顺序将特征用下划线(_)拼接为 trigger_id

  • 特征值为空对应 "NULL"

  • 包含 Boundaries 字段的特征需要进行离散化(左开,右闭区间),比如年龄 [20, 30, 40, 50] --> trigger对应 <=20, 20-30, 30-40,40-50, >50

用户年龄23,对应"20-30"

用户年龄空,对应"NULL"

用户年龄60,对应">50"

用户年龄19,对应"<=20"

hologres 表示例:

此处使用性别、年龄、机型三个特征

trigger_id

item_ids

Male_<=20_IOS

item_id1::score1,item_id2::score2.......

Famale_20-30_Android

item_id4::score4,item_id5::score5.......

......

.......

配置示例:

"RecallConfs" :[    
{
          "Name":"user_group_hot_recall",
          "RecallType": "UserGroupHotRecall",
          "RecallCount" :500,
          "Triggers": [
            {
              "TriggerKey": "gender"
            },
             {
              "TriggerKey": "age",
              "Boundaries": [20,30,40,50]
            },
            {
              "TriggerKey": "os"
            }
          ],
          "DaoConf":{
                "AdapterType": "hologres",
                "HologresName": "holo_info",
                "HologresTableName": "group_hotness_table"
          }
}
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 UserGroupHotRecall

RecallCount

int

召回数量

Triggers

json array

构造 trigger_id 的具体信息

  • TriggerKey

string

从 user 的特征里获取 tigger 值

  • Boundaries

json int array

字段的边界值范围

DaoConf

json object

Dao 定义

  • AdapterType

string

数据源类型,取值 hologres

  • HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

  • HologresTableName

string

数据表名称

全局热门召回(UserGlobalHotRecall)

全局热门召回的表 schema 和 分组召回的表 schema 是相同的,只是全局热门召回表中只有一条数据,而且 trigger_id = -1

hologres

配置示例:

"RecallConfs" :[    
{
          "Name":"UserGlobalHotRecall",
          "RecallType": "UserGlobalHotRecall",
          "RecallCount" :500,
          "DaoConf":{
                "AdapterType": "hologres",
                "HologresName": "holo_info",
                "HologresTableName": "global_hotness_table"
          }
  }
]

OTS(Tablestore)

配置示例:

"RecallConfs" :[    
{
          "Name":"UserGlobalHotRecall",
          "RecallType": "UserGlobalHotRecall",
          "RecallCount" :500,
          "DaoConf":{
                "AdapterType": "tablestore",
                "TableStoreName": "ots_info",
                "TableStoreTableName": "global_hotness_recall"
          }
  }
]

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 UserGlobalHotRecall

RecallCount

int

召回数量

DaoConf

json object

Dao 定义

●AdapterType

string

数据源类型,取值 tablestore

●TableStoreName

string

在数据源配置(TableStoreConfs)中配置好的 tablestore 的自定义名称,如数据源配置中的 tablestore_info

●TableStoreTableName

string

数据表名称

冷启动召回(ColdStartRecall

查询 item 表,根据条件或者时间进行过滤,查询出符合规则的候选集

hologres

"RecallConfs" :[    
    {
      "Name": "AllLiveItemRecall",
      "RecallType": "ColdStartRecall",
      "RecallCount": 3000,
      "ColdStartDaoConf": {
        "AdapterType": "hologres",
        "HologresName": "holo_info",
        "HologresTableName": "item_status_table",
        "WhereClause": "islist_status=1",
        "PrimaryKey": "\"item_id\"",
        "TimeInterval": 0
      }
    }
]

ColdStartDaoConf:

字段

类型

是否必填

描述

Name

string

自定义召回名称

RecallType

string

召回类型,固定值 ColdStartRecall

RecallCount

int

召回数量

ColdStartDaoConf

json object

冷启动数据定义

  • AdapterType

string

数据源的类型,取值 hologres等

  • HologresName

string

在数据源配置(HologresConfs)中配置好的 holo 的自定义名称,如数据源配置中的 holo_info

  • HologresTableName

string

holo 中的冷启动召回表的表名

  • WhereClause

string

过滤条件, 如果需要时间过滤,使用 ${time}。 比如根据创建时间, create_time > ${time}

  • PrimaryKey

string

表的主键

  • TimeInterval

int

根据时间差,计算 ${time} 时间值。

${time} = 当前时间- TimeInterval

如何使用

召回的使用位置对应配置总览中的 SceneConfs,SceneConfs 是一个 Map[string]object 结构,可以分场景的使用召回,配置如下

"SceneConfs": {
  "scene_name": {
    "default": {
      "RecallNames": [
        "collaborative_filter"
      ]
    }
  }
}

  • scene_name 需要替换为自己的场景名。

  • default 为目录,这里保持默认即可。

  • RecallNames是一个 []string,值为召回配置中的自定义名称。

  • 本页导读 (0)
文档反馈