You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spot.apache.org by na...@apache.org on 2018/01/10 03:41:07 UTC

[3/6] incubator-spot git commit: Modify bytes and packets field types

Modify bytes and packets field types

Bigint is a safer choice for this fields in case the byte or packet size exceeds the Integer type numerical limit


Project: http://git-wip-us.apache.org/repos/asf/incubator-spot/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spot/commit/06f62e77
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spot/tree/06f62e77
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spot/diff/06f62e77

Branch: refs/heads/SPOT-181_ODM
Commit: 06f62e77f36d0f0f9b912104c2af6488e567e598
Parents: 050ce09
Author: Tadd Wood <ta...@arcadiadata.com>
Authored: Sat Dec 2 17:32:45 2017 -0800
Committer: Tadd Wood <ta...@arcadiadata.com>
Committed: Sat Dec 2 17:32:45 2017 -0800

----------------------------------------------------------------------
 spot-setup/odm/create_event_pqt.sql | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spot/blob/06f62e77/spot-setup/odm/create_event_pqt.sql
----------------------------------------------------------------------
diff --git a/spot-setup/odm/create_event_pqt.sql b/spot-setup/odm/create_event_pqt.sql
index ffd888c..cb8ed87 100644
--- a/spot-setup/odm/create_event_pqt.sql
+++ b/spot-setup/odm/create_event_pqt.sql
@@ -39,8 +39,8 @@ category string,
 query string,
 service string,
 state string,
-in_bytes int,
-out_bytes int,
+in_bytes bigint,
+out_bytes bigint,
 xref string,
 version string,
 api string,
@@ -250,8 +250,8 @@ irc_command string,
 irc_value string,
 irc_additional_data string,
 -- Flow
-flow_in_packets int,
-flow_out_packets int,
+flow_in_packets bigint,
+flow_out_packets bigint,
 flow_conn_state string,
 flow_history string,
 flow_src_dscp string,