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

org.elasticsearch.script.UpsertMetadata Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * 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");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy