我正在解析非常大(5GB 到2TB)的压缩 json 文件,并使用以下算法将一些数据存储到 csv 文件中。它可以工作,但由于具有三个嵌套循环,因此与高效相反。
由于我不熟悉python提供的json和yaml库,我也不确定几行代码的成本:
k = yaml.load(json.dumps(v))
如果您没有注意到,我已经yaml.load()
在该行上方调用了一个函数:
header = yaml.load(json.dumps(header))
似乎我不得不调用该函数两次,因为键的内部叶子(值)header
被解释为字符串。
当我在这一行中简单地打印出 v 的值时:for k, v in header.iteritems():
,输出通常看起来像以下几行之一:
[{'value': ['4-55251088-0 0NNN RT(1535855435726 0) q(0 -1 -1 -1) r(0 -1)'], 'key': 'x_iinfo'}]
[{'value': ['timeout=60'], 'key': 'keep_alive'}, {'value': ['Sun, 02 Sep 2018 02:30:35 GMT'], 'key': 'date'}]
[{'value': ['W/"12765-1490784752000"'], 'key': 'etag'}, {'value': ['Sun, 02 Sep 2018 02:27:16 GMT'], 'key': 'date'}]
[{'value': ['Sun, 02 Sep 2018 02:30:32 GMT'], 'key': 'date'}]
所以基本上,如果在我们的文件中有一个名为“未知”的类别,它是一个 json 树,包括没有特定类别的所有内容。
有没有更好的方法来获得所有这些值,而不会通过添加两个循环来减慢算法的速度?
完整方法来源:
def convertJsonHeadersToCSV(jsonFilePath, CSVFilePath,portNum, protocol):
try:
bodyPattern = re.compile('<(html|!DOCTYPE).*$', re.IGNORECASE | re.MULTILINE)
csvFile = open(CSVFilePath, 'w')
print("Converting " + protocol + " file to csv, please wait...")
spinner.start()
csvWriter = unicodecsv.writer(csvFile)
csvWriter.writerow(['ip', 'date', 'protocol', 'port', 'data'])
chunk_size = 128 * 1024 * 1024
with lz4.frame.open(jsonFilePath, 'r') as f:
for line in f:
try:
text = ""
jsonData = json.loads(line)
ts = jsonData['timestamp'][:10]
ip = jsonData['ip']
data = jsonData['data']['http']
if 'response' in data:
if 'headers' in data['response']:
header = jsonData['data']['http']['response']['headers']
header = yaml.load(json.dumps(header))
for k, v in header.iteritems():
if 'unknown' in k:
#print(v)
k = yaml.load(json.dumps(v))
for i in k:
#print(str(i['key']) + ": "+str(i['value']) + "\r\n")
text = text + str(str(i['key']) + ": "+str(i['value']) + "\r\n")
else:
text = text + str(str(k) + ": "+str(v) + "\r\n")
#csvWriter.writerow([ip, ts, protocol, portNum, text])
except:#sometimes will run into a unicode error, still working on handling this exception.
pass
csvFile.close()
spinner.stop()
print("Completed conversion of " + protocol + " file.")
except Exception as ex:
spinner.stop()
traceback.print_exc()
print("An error occurred while converting the file, moving on to the next task...")