{"id":700,"date":"2013-10-25T16:51:38","date_gmt":"2013-10-26T00:51:38","guid":{"rendered":"http:\/\/raffy.ch\/blog\/?p=700"},"modified":"2013-10-25T16:51:38","modified_gmt":"2013-10-26T00:51:38","slug":"using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge","status":"publish","type":"post","link":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/","title":{"rendered":"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge"},"content":{"rendered":"<p>As I outlined in my previous blog post on <a href=\"http:\/\/raffy.ch\/blog\/2013\/10\/22\/cleaning-up-network-traffic-logs-vast-2013-challenge\/\">How to clean up network traffic logs<\/a>, I have been working with the <a href=\"http:\/\/vacommunity.org\/VAST+Challenge+2013\">VAST 2013<\/a> traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying.<\/p>\n<p>First off, <a href=\"http:\/\/www.cloudera.com\/content\/cloudera\/en\/products\/cdh\/impala.html\">Impala<\/a> is a real-time search engine for Hadoop (i.e., Hive\/HDFS). So, scalable, distributed, etc. In the following I am assuming that you have Impala installed already. If not, I recommend you use the <a href=\"http:\/\/www.cloudera.com\/content\/cloudera-content\/cloudera-docs\/Impala\/latest\/Installing-and-Using-Impala\/ciiu_cm_installation.html\">Cloudera Manager<\/a> to do so. It&#8217;s pretty straight forward.<\/p>\n<p>First we have to load the data into Impala, which is a two step process. We are using external tables, meaning that the data will live in files on HDFS. What we have to do is getting the data into HDFS first and then loading it into Impala:<\/p>\n<pre style=\"font-family:monospace; font-size:14px;\">$ sudo su - hdfs\r\n$ hdfs dfs -put \/tmp\/nf-chunk*.csv \/user\/hdfs\/data<\/pre>\n<p>We first become the hdfs user, then copy all of the netflow files from the MiniChallenge into HDFS at \/user\/hdfs\/data. Next up we connect to impala and create the database schema:<\/p>\n<pre style=\"font-family:monospace; font-size:14px;\">$ impala-shell\r\ncreate external table if not exists logs (\r\n\tTimeSeconds double,\r\n\tparsedDate timestamp,\r\n\tdateTimeStr string,\r\n\tipLayerProtocol int,\r\n\tipLayerProtocolCode string,\r\n\tfirstSeenSrcIp string,\r\n\tfirstSeenDestIp string,\r\n\tfirstSeenSrcPort int,\r\n\tfirstSeenDestPor int,\r\n\tmoreFragment int,\r\n\tcontFragment int,\r\n\tdurationSecond int,\r\n\tfirstSeenSrcPayloadByte bigint,\r\n\tfirstSeenDestPayloadByte bigint,\r\n\tfirstSeenSrcTotalByte bigint,\r\n\tfirstSeenDestTotalByte bigint,\r\n\tfirstSeenSrcPacketCoun int,\r\n\tfirstSeenDestPacketCoun int,\r\n\trecordForceOut int)\r\nrow format delimited fields terminated by ',' lines terminated by '\\n'\r\nlocation '\/user\/hdfs\/data\/';<\/pre>\n<p>Now we have a table called &#8216;logs&#8217; that contains all of our data. We told Impala that the data is comma separated and told it where the data files are. That&#8217;s already it. What I did on my installation is leveraging the columnar data format of Impala to speed queries up. A lot of analytic queries don&#8217;t really suit the row-oriented manner of databases. Columnar orientation is much more suited. Therefore we are creating a <a href=\"http:\/\/parquet.io\/\">Parquet<\/a>-based table:<\/p>\n<pre style=\"font-family:monospace; font-size:14px;\">create table pq_logs like logs stored as parquetfile;\r\ninsert overwrite table pq_logs select * from logs;<\/pre>\n<p>The second command is going to take a bit as it loads all the data into the new Parquet table. You can now issues queries against the pq_logs table and you will get the benefits of a columnar data store:<\/p>\n<pre style=\"font-family:monospace; font-size:14px;\">select distinct firstseendestpor from pq_logs where morefragment=1;<\/pre>\n<p>Have a look at my <a href=\"http:\/\/raffy.ch\/blog\/2013\/10\/22\/cleaning-up-network-traffic-logs-vast-2013-challenge\/\">previous blog<\/a> entry for some more queries against this data.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-700","post","type-post","status-publish","format-standard","hentry","category-log-analysis"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Raffael Marty\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Future of Tech and Security: Strategy &amp; Innovation with Raffy \u2013 Insights at the intersection of cybersecurity, strategy, and innovation.\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy &amp; Innovation with Raffy\" \/>\n\t\t<meta property=\"og:description\" content=\"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-10-26T00:51:38+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-10-26T00:51:38+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@raffaelmarty\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy &amp; Innovation with Raffy\" \/>\n\t\t<meta name=\"twitter:description\" content=\"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@raffaelmarty\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#blogposting\",\"name\":\"Using Impala and Parquet to Analyze Network Traffic \\u2013 VAST 2013 Challenge \\u2013 Future of Tech and Security: Strategy & Innovation with Raffy\",\"headline\":\"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge\",\"author\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/author\\\/raffy\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Raffael Marty\"},\"datePublished\":\"2013-10-25T16:51:38-06:00\",\"dateModified\":\"2013-10-25T16:51:38-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#webpage\"},\"articleSection\":\"Log Analysis\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/raffy.ch\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/category\\\/log-analysis\\\/#listItem\",\"name\":\"Log Analysis\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/category\\\/log-analysis\\\/#listItem\",\"position\":2,\"name\":\"Log Analysis\",\"item\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/category\\\/log-analysis\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#listItem\",\"name\":\"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#listItem\",\"position\":3,\"name\":\"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/category\\\/log-analysis\\\/#listItem\",\"name\":\"Log Analysis\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/#person\",\"name\":\"Raffael Marty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Raffael Marty\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/author\\\/raffy\\\/#author\",\"url\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/author\\\/raffy\\\/\",\"name\":\"Raffael Marty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Raffael Marty\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#webpage\",\"url\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/\",\"name\":\"Using Impala and Parquet to Analyze Network Traffic \\u2013 VAST 2013 Challenge \\u2013 Future of Tech and Security: Strategy & Innovation with Raffy\",\"description\":\"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/2013\\\/10\\\/25\\\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/author\\\/raffy\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/author\\\/raffy\\\/#author\"},\"datePublished\":\"2013-10-25T16:51:38-06:00\",\"dateModified\":\"2013-10-25T16:51:38-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/\",\"name\":\"Cyber Security - Strategy and Innovation\",\"description\":\"Insights at the intersection of cybersecurity, strategy, and innovation.\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/raffy.ch\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy & Innovation with Raffy","description":"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search","canonical_url":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#blogposting","name":"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy & Innovation with Raffy","headline":"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge","author":{"@id":"https:\/\/raffy.ch\/blog\/author\/raffy\/#author"},"publisher":{"@id":"https:\/\/raffy.ch\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g","width":96,"height":96,"caption":"Raffael Marty"},"datePublished":"2013-10-25T16:51:38-06:00","dateModified":"2013-10-25T16:51:38-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#webpage"},"isPartOf":{"@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#webpage"},"articleSection":"Log Analysis"},{"@type":"BreadcrumbList","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog#listItem","position":1,"name":"Home","item":"https:\/\/raffy.ch\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog\/category\/log-analysis\/#listItem","name":"Log Analysis"}},{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog\/category\/log-analysis\/#listItem","position":2,"name":"Log Analysis","item":"https:\/\/raffy.ch\/blog\/category\/log-analysis\/","nextItem":{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#listItem","name":"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge"},"previousItem":{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#listItem","position":3,"name":"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge","previousItem":{"@type":"ListItem","@id":"https:\/\/raffy.ch\/blog\/category\/log-analysis\/#listItem","name":"Log Analysis"}}]},{"@type":"Person","@id":"https:\/\/raffy.ch\/blog\/#person","name":"Raffael Marty","image":{"@type":"ImageObject","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g","width":96,"height":96,"caption":"Raffael Marty"}},{"@type":"Person","@id":"https:\/\/raffy.ch\/blog\/author\/raffy\/#author","url":"https:\/\/raffy.ch\/blog\/author\/raffy\/","name":"Raffael Marty","image":{"@type":"ImageObject","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1a1923877d9dbd00d99847074d62faab586cce0a9ee6a4c85e8bb7c46d7418ac?s=96&d=mm&r=g","width":96,"height":96,"caption":"Raffael Marty"}},{"@type":"WebPage","@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#webpage","url":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/","name":"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy & Innovation with Raffy","description":"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/raffy.ch\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/#breadcrumblist"},"author":{"@id":"https:\/\/raffy.ch\/blog\/author\/raffy\/#author"},"creator":{"@id":"https:\/\/raffy.ch\/blog\/author\/raffy\/#author"},"datePublished":"2013-10-25T16:51:38-06:00","dateModified":"2013-10-25T16:51:38-06:00"},{"@type":"WebSite","@id":"https:\/\/raffy.ch\/blog\/#website","url":"https:\/\/raffy.ch\/blog\/","name":"Cyber Security - Strategy and Innovation","description":"Insights at the intersection of cybersecurity, strategy, and innovation.","inLanguage":"en-US","publisher":{"@id":"https:\/\/raffy.ch\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Future of Tech and Security: Strategy &amp; Innovation with Raffy \u2013 Insights at the intersection of cybersecurity, strategy, and innovation.","og:type":"article","og:title":"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy &amp; Innovation with Raffy","og:description":"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search","og:url":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/","og:image":"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png","og:image:secure_url":"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png","og:image:width":512,"og:image:height":512,"article:published_time":"2013-10-26T00:51:38+00:00","article:modified_time":"2013-10-26T00:51:38+00:00","twitter:card":"summary","twitter:site":"@raffaelmarty","twitter:title":"Using Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge \u2013 Future of Tech and Security: Strategy &amp; Innovation with Raffy","twitter:description":"As I outlined in my previous blog post on How to clean up network traffic logs, I have been working with the VAST 2013 traffic logs. Today I am going to show you can load the traffic logs into Impala (with a parquet table) for very quick querying. First off, Impala is a real-time search","twitter:creator":"@raffaelmarty","twitter:image":"https:\/\/raffy.ch\/blog\/wp-content\/uploads\/2025\/09\/ogimage.png"},"aioseo_meta_data":{"post_id":"700","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-06-08 17:14:34","updated":"2025-06-12 20:14:06","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/raffy.ch\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/raffy.ch\/blog\/category\/log-analysis\/\" title=\"Log Analysis\">Log Analysis<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUsing Impala and Parquet to Analyze Network Traffic \u2013 VAST 2013 Challenge\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/raffy.ch\/blog"},{"label":"Log Analysis","link":"https:\/\/raffy.ch\/blog\/category\/log-analysis\/"},{"label":"Using Impala and Parquet to Analyze Network Traffic &#8211; VAST 2013 Challenge","link":"https:\/\/raffy.ch\/blog\/2013\/10\/25\/using-impala-and-parquet-to-analyze-network-traffic-vast-2013-challenge\/"}],"_links":{"self":[{"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/posts\/700","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/comments?post=700"}],"version-history":[{"count":2,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/posts\/700\/revisions"}],"predecessor-version":[{"id":703,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/posts\/700\/revisions\/703"}],"wp:attachment":[{"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/media?parent=700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/categories?post=700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/raffy.ch\/blog\/wp-json\/wp\/v2\/tags?post=700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}