Skip to content

Commit c8d60ca

Browse files
author
吴炳亨
authored
Merge pull request #234 from NigelWu95/dev
Dev
2 parents a589822 + 32dcded commit c8d60ca

File tree

7 files changed

+25
-18
lines changed

7 files changed

+25
-18
lines changed

docs/data_migration.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,11 @@ asyncfetch 操作支持回调等参数,具体使用参考:[asyncfetch 配置
100100
### 保存任务结果
101101
资源列举结果(云存储文件列表)和异步抓取提交的记录可以保存在自定义的本地目录中,其中资源列举结果可以按照自定义格式来保存,参考:[持久化配置](resultsave.md)
102102

103-
### 迁移结果查询
104-
由于采用的是异步抓取方式,执行任务后只能保存提交任务的状态,数据迁移状态有两种方式可以知晓:
105-
1、设置了抓取结果的回调,七牛会对抓取任务的结果进行回调到设置的服务器,如果回调地址异常则无效。
106-
2、通过再查询的方式才能获取,可根据七牛存储的 stat 接口来查询每个文件的状态从而确认具体文件的迁移结果,本工具提供对应的操作方式,可参考:[stat 配置](stat.md)
107-
如果迁移过程中保存了列举资源的文件列表,则 stat 操作的数据源可直接配置成文件列表所在目录,不需要再次从原数据空间列举(列举操作比较耗时,建议每次从数
108-
据源列举资源列表时都保存到本地)
103+
### 迁移结果校验
104+
由于采用的是异步抓取方式,执行任务后只能保存提交任务的状态,数据迁移结果需要进行校验,在迁移过程中,建议设置 save-total=true(或者不设置默认为
105+
true),此时会保留从数据源得到的完整列表数据,可统计文件数量和核对文件名,如果文件数量与迁移到空间中的文件数量一致,说明都迁移成功,如果迁移到空间中
106+
的文件数量小于该次从数据源导出的文件数量,则需要进行进一步校验,确认哪些文件迁移失败,校验有两种方式:
107+
1、设置了抓取结果的回调,七牛会将抓取任务的结果回调到设置的服务器(callback-url),如果回调地址异常则会回调失败。
108+
2、根据数据源的文件名查询七牛存储文件状态,即用七牛存储的 stat 接口来查询每个文件的存储信息从而确认具体文件的迁移结果,本工具提供对应的操作方式,可
109+
参考:[stat 配置](stat.md),如果迁移过程中保存了列举资源的文件列表,则 stat 操作的数据源可直接配置成文件列表所在目录,不需要再次从原数据空间列举
110+
(列举操作比较耗时,建议每次从数据源列举资源列表时都保存到本地)

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.qiniu</groupId>
88
<artifactId>qsuits</artifactId>
9-
<version>7.2</version>
9+
<version>7.3</version>
1010
<name>qsuits</name>
1111
<description>qiniu-suits is a efficient tools for qiniu api implemented by java8.</description>
1212
<url>https://github.com/NigelWu95/qiniu-suits-java</url>

src/main/java/com/qiniu/convert/Converter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public List<T> convertToVList(List<E> lineList) {
2121
try {
2222
mapList.add(convertToV(line));
2323
} catch (Exception e) {
24-
errorList.add(JsonUtils.toJson(line) + "\tcvterr " + e.getMessage());
24+
errorList.add(JsonUtils.toJson(line) + "\tconvert error " + e.getMessage());
2525
}
2626
}
2727
}

src/main/java/com/qiniu/process/filtration/BaseFilter.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package com.qiniu.process.filtration;
22

3+
import com.qiniu.util.ConvertingUtils;
4+
35
import java.io.IOException;
46
import java.time.LocalDateTime;
57
import java.util.List;
@@ -111,7 +113,7 @@ public boolean filterKey(T item) {
111113
public boolean filterMimeType(T item) {
112114
try {
113115
if (item == null) return false;
114-
String mType = valueFrom(item, "mime");
116+
String mType = valueFrom(item, ConvertingUtils.defaultMimeField);
115117
boolean result = false;
116118
if (checkList(mimeType)) {
117119
result = mimeType.stream().anyMatch(mType::contains);
@@ -127,7 +129,7 @@ public boolean filterMimeType(T item) {
127129
public boolean filterDatetime(T item) {
128130
try {
129131
if (item == null) return false;
130-
LocalDateTime localDateTime = LocalDateTime.parse(valueFrom(item, "datetime"));
132+
LocalDateTime localDateTime = LocalDateTime.parse(valueFrom(item, ConvertingUtils.defaultDatetimeField));
131133
return localDateTime.compareTo(datetimeMax) <= 0 && localDateTime.compareTo(datetimeMin) >= 0;
132134
} catch (Exception e) {
133135
return true;
@@ -137,7 +139,7 @@ public boolean filterDatetime(T item) {
137139
public boolean filterType(T item) {
138140
try {
139141
if (item == null) return false;
140-
return valueFrom(item, "type").equals(type);
142+
return valueFrom(item, ConvertingUtils.defaultTypeField).equals(type);
141143
} catch (NullPointerException e) {
142144
return true;
143145
}
@@ -146,7 +148,7 @@ public boolean filterType(T item) {
146148
public boolean filterStatus(T item) {
147149
try {
148150
if (item == null) return false;
149-
return valueFrom(item, "status").equals(status);
151+
return valueFrom(item, ConvertingUtils.defaultStatusField).equals(status);
150152
} catch (NullPointerException e) {
151153
return true;
152154
}

src/main/java/com/qiniu/process/filtration/SeniorFilter.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import com.google.gson.JsonObject;
66
import com.google.gson.reflect.TypeToken;
77
import com.qiniu.config.JsonFile;
8+
import com.qiniu.util.ConvertingUtils;
89
import com.qiniu.util.JsonUtils;
910

1011
import java.io.IOException;
@@ -59,7 +60,8 @@ public List<T> checkMimeType(List<T> lineList) {
5960
if (line == null) continue;
6061
key = valueFrom(line, "key");
6162
if (key.contains(".")) {
62-
String finalKeyMimePair = key.substring(key.lastIndexOf(".") + 1) + ":" + valueFrom(line, "mime");
63+
String finalKeyMimePair = key.substring(key.lastIndexOf(".") + 1) + ":" +
64+
valueFrom(line, ConvertingUtils.defaultMimeField);
6365
if (extMimeList.parallelStream().anyMatch(extMime ->
6466
finalKeyMimePair.split("/")[0].equalsIgnoreCase(extMime))) {
6567
continue;
@@ -83,7 +85,8 @@ public boolean checkMimeType(T line) {
8385
try {
8486
key = valueFrom(line, "key");
8587
if (key.contains(".")) {
86-
String finalKeyMimePair = key.substring(key.lastIndexOf(".") + 1) + ":" + valueFrom(line, "mime");
88+
String finalKeyMimePair = key.substring(key.lastIndexOf(".") + 1) + ":" +
89+
valueFrom(line, ConvertingUtils.defaultMimeField);
8790
if (extMimeList.parallelStream().anyMatch(extMime ->
8891
finalKeyMimePair.split("/")[0].equalsIgnoreCase(extMime))) {
8992
return false;

src/main/java/com/qiniu/util/CloudAPIUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,13 @@ public static void checkQiniu(Auth auth) throws QiniuException {
239239
}
240240

241241
public static void checkQiniu(BucketManager bucketManager, String bucket) throws QiniuException {
242-
bucketManager.listFilesV2(bucket, null, null, 1, null);
242+
bucketManager.listV2(bucket, null, null, 1, null);
243243
}
244244

245245
public static void checkQiniu(String accessKey, String secretKey, Configuration configuration, String bucket)
246246
throws QiniuException {
247247
BucketManager bucketManager = new BucketManager(Auth.create(accessKey, secretKey), configuration);
248-
bucketManager.listFilesV2(bucket, null, null, 1, null);
248+
bucketManager.listV2(bucket, null, null, 1, null);
249249
bucketManager = null;
250250
}
251251

src/main/java/com/qiniu/util/ConvertingUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public static <T> T toPair(JsonObject json, Map<String, String> indexMap, KeyVal
275275
for (String index : indexMap.keySet()) {
276276
jsonElement = json.get(index);
277277
if (jsonElement == null || jsonElement instanceof JsonNull) {
278-
throw new IOException("the index: " + index + " can't be found in " + json);
278+
if (!allFieldsSet.contains(index)) throw new IOException("the index: " + index + " can't be found in " + json);
279279
} else {
280280
pair.put(indexMap.get(index), JsonUtils.toString(jsonElement));
281281
}
@@ -314,7 +314,7 @@ public static <T> T toPair(Map<String, String> line, List<String> fields, KeyVal
314314
else if (intFields.contains(field)) pair.put(field, Integer.valueOf(value));
315315
else pair.put(field, value);
316316
} else {
317-
throw new IOException("the field: " + field + " can't be found in " + line);
317+
if (!allFieldsSet.contains(field)) throw new IOException("the field: " + field + " can't be found in " + line);
318318
}
319319
}
320320
if (pair.size() == 0) throw new IOException("empty result string.");

0 commit comments

Comments
 (0)