/// <summary>
        ///     First stage of dump files import. The server is switched to admin mode and data files are moved to allow rollback
        /// </summary>
        /// <param name="path"></param>
        public void ImportDumpStage0(string path)
        {
            var request = new ImportDumpRequest {
                Path = path, ShardIndex = ShardIndex, Stage = 0
            };

            var response = Channel.SendRequest(request);

            if (response is ExceptionResponse exceptionResponse)
            {
                throw new CacheException("Error while importing dump", exceptionResponse.Message,
                                         exceptionResponse.CallStack);
            }
        }