bilibili-backup/app/admin/main/search/model/upsert.go

18 lines
400 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package model
// UpsertParams .
type UpsertParams struct {
Business string `form:"business" validate:"required"`
DataStr string `form:"data" validate:"required"`
Insert bool `form:"insert" default:"false"`
UpsertBody []UpsertBody
}
// UpsertBody job的bulk优化参考这个模板 .
type UpsertBody struct {
IndexName string
IndexType string
IndexID string
Doc MapData
}