mirror of
				https://kkgithub.com/actions/cache.git
				synced 2025-10-31 18:51:49 +08:00 
			
		
		
		
	Test out 16 concurrent requests
This commit is contained in:
		
							
								
								
									
										7
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							| @ -1622,18 +1622,17 @@ function uploadFile(restClient, cacheId, archivePath) { | ||||
|         const resourceUrl = getCacheApiUrl() + "caches/" + cacheId.toString(); | ||||
|         const responses = []; | ||||
|         const fd = fs.openSync(archivePath, "r"); // Use the same fd for serial reads? Will this work for parallel too? | ||||
|         const concurrency = 8; // # of HTTP requests in parallel | ||||
|         const concurrency = 16; // # of HTTP requests in parallel | ||||
|         core.debug(`Concurrency: ${concurrency}`); | ||||
|         const threads = [...new Array(concurrency).keys()]; | ||||
|         core.debug("Awaiting all uploads"); | ||||
|         let offset = 0; | ||||
|         yield Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () { | ||||
|             core.debug(`Offset: ${offset} FileSize: ${fileSize}`); | ||||
|             while (offset < fileSize) { | ||||
|                 const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE; | ||||
|                 const start = offset; | ||||
|                 const end = offset + chunkSize - 1; | ||||
|                 core.debug(`Start: ${start} End: ${end}`); | ||||
|                 offset += MAX_CHUNK_SIZE; // Do this before losing thread during await? | ||||
|                 offset += MAX_CHUNK_SIZE; | ||||
|                 const chunk = fs.createReadStream(archivePath, { fd, start, end, autoClose: false }); | ||||
|                 responses.push(yield uploadChunk(restClient, resourceUrl, chunk, start, end)); | ||||
|             } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Josh Gross
					Josh Gross