This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-05-01T19:20:46.239+0000 ERROR SplitRunner-8-78 com.facebook.presto.execution.TaskExecutor Error processing Split 20140501_192032_00002_disgk.1.0-0 (start = 1398972045653, wall = 580 ms, cpu = 0 ms, calls = 1) | |
java.lang.LinkageError: loader constraint violation: loader (instance of com/facebook/presto/server/PluginManager$SimpleChildFirstClassLoader) previously initiated loading for a different type with name "io/airlift/slice/Slice" | |
at java.lang.ClassLoader.defineClass1(Native Method) ~[na:1.7.0_12-ea] | |
at java.lang.ClassLoader.defineClass(ClassLoader.java:791) ~[na:1.7.0_12-ea] | |
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[na:1.7.0_12-ea] | |
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) ~[na:1.7.0_12-ea] | |
at java.net.URLClassLoader.access$100(URLClassLoader.java:71) ~[na:1.7.0_12-ea] | |
at java.net.URLClassLoader$1.run(URLClassLoader.java:361) ~[na:1.7.0_12-ea] | |
at java.net.URLClassLoader$1.run(URLClassLoader.java:355) ~[na:1.7.0_12-ea] | |
at java.security.Ac |
Assuming:
table1
andtable2
both have a date partition with a column name ofd
table2
referencestable1
by the columnt1_id
table1
andtable2
are stored in HDFS as RCFile
The following correctly produces NULL
(empty) values:
WITH
t1 AS (SELECT t1.id FROM table1 t1 WHERE t1.d='2014-02-24'),
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=========================================================== | |
Setting up build environment for x86_64 darwin12.2.1 | |
=========================================================== | |
checking whether we are using the GNU C++ compiler... (cached) yes | |
checking whether g++ accepts -g... (cached) yes | |
checking dependency style of g++... (cached) gcc3 | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking dependency style of gcc... (cached) gcc3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
# Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook | |
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | |
class Gti < Formula | |
homepage 'http://r-wos.org/hacks/gti' | |
url 'https://github.com/rwos/gti/tarball/master' | |
sha1 'f34d37ba4345b3b97eaa64280e6f60a6881c38d8' | |
version "0.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Shortcuts for backbone.js via the asset pipeline | |
autocmd User Rails Rnavcommand bbmodel app/assets/javascripts/backbone/models -suffix=.js.coffee -glob=* | |
autocmd User Rails Rnavcommand bbhelper app/assets/javascripts/backbone/helpers -suffix=.js.coffee -glob=* | |
autocmd User Rails Rnavcommand bbmixin app/assets/javascripts/backbone/mixins -suffix=.js.coffee -glob=* | |
autocmd User Rails Rnavcommand bbrouter app/assets/javascripts/backbone/routers -suffix=.js.coffee -glob=* | |
autocmd User Rails Rnavcommand bbtemplate app/assets/javascripts/backbone/templates -suffix=.jst.hbs -glob=**/* | |
autocmd User Rails Rnavcommand bbview app/assets/javascripts/backbone/views -suffix=.js.coffee -glob=**/* | |
" Shortcuts for less.js via the asset pipeline | |
autocmd User Rails Rnavcommand less app/assets/stylesheets/less -suffix=.less -glob=**/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# print SQL to STDOUT | |
if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER') | |
require 'logger' | |
RAILS_DEFAULT_LOGGER = Logger.new(STDOUT) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Font | |
set guifont=Monaco:h12.00 | |
" No audible bell | |
set vb | |
" No toolbar | |
set guioptions-=T | |
" Use console dialogs |