#117 Warning message about non unique database keys

クローズ
6 年 前carlos.garcia によって開かれました · 2 コメント
Carlos Garcia6 年 前 にコメントしました

When analyzing the file found in 1, the following error is displayed when writing the statistics to the database:

Exception in statistics_db: UNIQUE constraint failed: ip_ports.ipAddress, ip_ports.portDirection, ip_ports.portNumber
When analyzing the file found in [1], the following error is displayed when writing the statistics to the database: ``` Exception in statistics_db: UNIQUE constraint failed: ip_ports.ipAddress, ip_ports.portDirection, ip_ports.portNumber ``` [1]: http://www.fukuda-lab.org/mawilab/v1.1/2018/04/04/20180404.html
Carlos Garcia6 年 前 にコメントしました
オーナー

This warning was more serious than expected: the ip_ports table would not be created.

The issue happens when IP A sends packets to B using the same ports but different protocols (i.e., UDP and TCP).

Solution: change the primary key of ip_ports to include the protocol

PRIMARY KEY(ipAddress,portDirection,portNumber,portProtocol)
This warning was more serious than expected: the `ip_ports` table would not be created. The issue happens when IP A sends packets to B using the same ports but different protocols (i.e., UDP and TCP). Solution: change the primary key of `ip_ports` to include the protocol ```sql PRIMARY KEY(ipAddress,portDirection,portNumber,portProtocol) ```
jens.klein 6 年 前 に閉じられました
Jens Keim6 年 前 にコメントしました
共同編集者

Was fixed in pull request #120.

Was fixed in pull request #120.
会話に参加するには サインイン してください。
ラベルなし
Bug
マイルストーンなし
担当者なし
2 参加者
読み込み中…
キャンセル
保存
まだコンテンツがありません