org.elasticsearch.script.UpsertMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch subproject :server
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.script;
import org.elasticsearch.common.util.Maps;
import java.util.Map;
import java.util.Set;
class UpsertMetadata extends UpdateMetadata {
static final Map> PROPERTIES = Map.of(
INDEX,
StringField,
ID,
StringField,
OP,
StringField.withWritable().withNullable(),
NOW,
LongField
);
UpsertMetadata(String index, String id, String op, long now) {
super(metadataMap(index, id, op, now), Set.of("noop", "create"), PROPERTIES);
}
protected static Map metadataMap(String index, String id, String op, long now) {
Map metadata = Maps.newHashMapWithExpectedSize(PROPERTIES.size());
metadata.put(INDEX, index);
metadata.put(ID, id);
metadata.put(OP, op);
metadata.put(NOW, now);
return metadata;
}
@Override
public String getRouting() {
throw new UnsupportedOperationException("routing is unavailable for insert");
}
@Override
public long getVersion() {
throw new UnsupportedOperationException("version is unavailable for insert");
}
}