This endpoint is used to start indexing job to reindex records from one index to another index.
POST
/index-operations/_reindexLast modified: 9 months ago
Reindex data from one index to another
Request
Body Params application/json
RequestInfo
object
required
batchSize
integer <int32>
optional
batch size
index
string
required
index
jobId
string
optional
job id
reindexTopic
string
required
reindex topic
startTime
integer <int64>
optional
start time
tenantId
string
required
Unique id for a tenant.
totalRecords
integer <int32>
optional
total number of records
type
string
required
Example
{
"RequestInfo": {},
"batchSize": 0,
"index": "string",
"jobId": "string",
"reindexTopic": "string",
"startTime": 0,
"tenantId": "string",
"totalRecords": 0,
"type": "string"
}
Request samples
Responses
Success response is calculated tax.(200)
Invalid input.(400)
Unauthorized(401)
Forbidden(403)
Not Found(404)
Success response is calculated tax.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
ResponseInfo
object
optional
url
string
optional
url to access the particular file belong to the tag.
totalRecordsToBeIndexed
number
optional
number of total records to be indexed
estimatedTime
string
optional
estimate time
message
string
optional
message
jobId
string
optional
job id
Example
{
"ResponseInfo": {},
"url": "string",
"totalRecordsToBeIndexed": 0,
"estimatedTime": "string",
"message": "string",
"jobId": "string"
}
Last modified: 9 months ago