Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deserialization error on GetIndexTemplateAsync on 8.17.2, 8.17.3 versions #8479

Open
meriturva opened this issue Mar 20, 2025 · 2 comments
Open
Labels
8.x Relates to 8.x client version Category: Bug

Comments

@meriturva
Copy link

meriturva commented Mar 20, 2025

Elastic.Clients.Elasticsearch version: 8.17.2, 8.17.3

Elasticsearch version: 8.17.3

.NET runtime version: 8.0

Operating system version: linux

Description of the problem including expected versus actual behavior:
Asking index template we receive a deserialization error.

Here correct direct call:
GET _index_template/xxx-ft-it-documents
And correct response:

{
    "index_templates": [
        {
            "name": "xxx-ft-it-documents",
            "index_template": {
                "index_patterns": [
                    "xxx-ft-documents-*"
                ],
                "composed_of": [
                    "xxx-ft-ct-documents"
                ],
                "priority": 200,
                "version": 1
            }
        }
    ]
}

Instead of using client:

var indexTemplateResponse = await client.Indices.GetIndexTemplateAsync("xxx-ft-it-documents", TestContext.Current.CancellationToken);

Error:

Elastic.Transport.UnexpectedTransportException : The JSON value could not be converted to Elastic.Clients.Elasticsearch.Names. Path: $.index_templates[0].index_template.index_patterns | LineNumber: 5 | BytePositionInLine: 28.
---- System.Text.Json.JsonException : The JSON value could not be converted to Elastic.Clients.Elasticsearch.Names. Path: $.index_templates[0].index_template.index_patterns | LineNumber: 5 | BytePositionInLine: 28.

Thanks.

@meriturva meriturva added 8.x Relates to 8.x client version Category: Bug labels Mar 20, 2025
@piodab-dnv
Copy link

I am getting the same error when trying to get an index template. Version: 8.17.3

@lucacremonesi
Copy link

This is a pretty basic functionality. Don't you have simple integration/unit tests that verify that it works correctly?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
8.x Relates to 8.x client version Category: Bug
Projects
None yet
Development

No branches or pull requests

3 participants