Right now, elastic search is adding empty values as shown in the image, I would like to see the complete json object added inside the elastic search as document so I can search on it
Code
public async Task<CreateResponse> CreateDocumentAndIndex<T>(T document, string index, Type objectType) where T : class
{
_client = CreateElasticClient();
var serializedObject = JsonConvert.SerializeObject(document, Formatting.None,
new JsonSerializerSettings()
{
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
});
var elasticValues = new ElasticSeachValues
{
values = JObject.Parse(serializedObject)
};
Console.WriteLine(elasticValues.values);
var getIndexResponse = await _client.IndexAsync(elasticValues, idx => idx.Index(index.ToLower()));
}
}
public class ElasticSeachValues
{
public JObject values { get; set; }
}
Elastic Values
{
"CompanyId": "96af84f8-6cc0-46d6-63ae-08d9c3e170f9",
"Company": {
"CompanyName": "string",
"Country": "string",
"Street": "string",
"PostalCode": "string",
"VATId": "string",
"TeamMembers": [
{
"CompanyId": "96af84f8-6cc0-46d6-63ae-08d9c3e170f9",
"UserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"TeamMemberRoles": [],
"CreatedAt": "2021-12-20T12:52:10.2748443-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2748443-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 1,
"Id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"CompanyInvitations": [
{
"IsAccepted": true,
"IsInvitationSent": true,
"UserId": "6ceed528-5764-4a5f-43a1-08d9be698212",
"Email": "[email protected]",
"RoleId": "71fa9290-23e6-49e4-8bf9-b0f1083793c8",
"Role": {
"Title": "Owner",
"Key": "OWNER",
"CreatedAt": "0001-01-01T00:00:00-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2750237-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 5,
"Id": "71fa9290-23e6-49e4-8bf9-b0f1083793c8"
},
"CompanyId": "96af84f8-6cc0-46d6-63ae-08d9c3e170f9",
"AcceptedAt": "2021-12-20T12:52:10.2239198-05:00",
"ExpiresAt": "2021-12-20T12:52:10.2235813-05:00",
"AuthorizationCode": "ee65e028-dbc0-4994-a01e-a156f2dc8c36",
"CreatedAt": "2021-12-20T12:52:10.2748449-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2748449-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 1,
"Id": "b871455b-f0c4-453d-d6d5-08d9c3e1724b"
}
],
"Size": 0,
"CreatedAt": "2021-12-20T12:52:10.2748435-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2748435-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 1,
"Id": "96af84f8-6cc0-46d6-63ae-08d9c3e170f9"
},
"UserId": "00000000-0000-0000-0000-000000000000",
"TeamMemberRoles": [
{
"Title": "Owner",
"Key": "OWNER",
"CreatedAt": "0001-01-01T00:00:00-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2750237-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 5,
"Id": "71fa9290-23e6-49e4-8bf9-b0f1083793c8"
}
],
"CreatedAt": "2021-12-20T12:52:10.2748398-05:00",
"ModifiedAt": "2021-12-20T12:52:10.2748398-05:00",
"CreatedById": "00000000-0000-0000-0000-000000000000",
"ModifiedById": "00000000-0000-0000-0000-000000000000",
"Version": 1,
"Id": "eaf48b09-3db0-4141-6d33-08d9c3e170eb"
}
I am trying to add this in elastic search as document with an index. IndexAsync method returns 201 and when I review it in Kibana, it shows empty results as below:How can I add complete object/class?
private ElasticClient CreateElasticClient()
{
var settings = new ConnectionSettings(new Uri("http://localhost:9200/"));
var client = new ElasticClient(settings);
return client;
}
This client is just an elastic search client from Nest Library https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/nest.html
CodePudding user response:
You need to also reference the NEST.JsonNetSerializer nuget package and add the the JsonNetSerializer in the connection settings like below:
var pool = new SingleNodeConnectionPool(new Uri("http://localhost:9200"));
var connectionSettings =
new ConnectionSettings(pool, sourceSerializer: JsonNetSerializer.Default);
var client = new ElasticClient(connectionSettings);
return client;