Reindex request auto slicing

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
1.6.0

Hi,
I want to do a reindex and set slices to auto but I don’t see how in the .net library as slices is set to a nullable long so not sure how I set that to ‘auto’

///<summary>The number of slices this task should be divided into. Defaults to 1, meaning the task isn't sliced into subtasks. Can be set to `auto`.</summary>
		public long? Slices
		{
			get => Q<long? >("slices");
			set => Q("slices", value);
		}

Thank you for reporting this @goldenc, I’ve responded to your GitHub issue here: [BUG] Unable to set slices to auto in .Net Opensearch client · Issue #550 · opensearch-project/opensearch-net · GitHub

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.