|
20 | 20 | import java.util.List;
|
21 | 21 | import java.util.Map;
|
22 | 22 | import java.util.Optional;
|
23 |
| -import java.util.UUID; |
24 | 23 | import java.util.concurrent.CancellationException;
|
25 | 24 | import java.util.concurrent.CompletableFuture;
|
26 | 25 | import java.util.concurrent.CompletionException;
|
@@ -209,7 +208,7 @@ static Process startProcess(ClickHouseRequest<?> request) {
|
209 | 208 | if (!tableFile.isAvailable() || !tableFile.getFile().getAbsolutePath().startsWith(hostDir)) {
|
210 | 209 | // creating a hard link is faster but it's not platform-independent
|
211 | 210 | File f = ClickHouseInputStream.save(
|
212 |
| - Paths.get(hostDir, "chc_".concat(UUID.randomUUID().toString())).toFile(), |
| 211 | + Paths.get(hostDir, "chc_".concat(request.getManager().createUniqueId())).toFile(), |
213 | 212 | table.getContent(), config.getWriteBufferSize(), config.getSocketTimeout(), true);
|
214 | 213 | filePath = containerDir.concat(f.getName());
|
215 | 214 | } else {
|
@@ -275,13 +274,13 @@ static Process startProcess(ClickHouseRequest<?> request) {
|
275 | 274 | String fileName = f.getName();
|
276 | 275 | int len = fileName.length();
|
277 | 276 | int index = fileName.indexOf('.', 1);
|
278 |
| - String uuid = UUID.randomUUID().toString(); |
| 277 | + String uuid = request.getManager().createUniqueId(); |
279 | 278 | if (index > 0 && index + 1 < len) {
|
280 | 279 | fileName = new StringBuilder(len + uuid.length() + 1).append(fileName.substring(0, index))
|
281 | 280 | .append('_').append(uuid).append(fileName.substring(index)).toString();
|
282 | 281 | } else {
|
283 | 282 | fileName = new StringBuilder(len + uuid.length() + 1).append(fileName).append('_')
|
284 |
| - .append(UUID.randomUUID().toString()).toString(); |
| 283 | + .append(request.getManager().createUniqueId()).toString(); |
285 | 284 | }
|
286 | 285 | Path newPath = Paths.get(hostDir, fileName);
|
287 | 286 | try {
|
|
0 commit comments