impala 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +2 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +28 -0
  5. data/Rakefile +15 -0
  6. data/impala.gemspec +25 -0
  7. data/lib/impala.rb +33 -0
  8. data/lib/impala/connection.rb +93 -0
  9. data/lib/impala/cursor.rb +86 -0
  10. data/lib/impala/protocol.rb +6 -0
  11. data/lib/impala/protocol/beeswax_constants.rb +14 -0
  12. data/lib/impala/protocol/beeswax_service.rb +747 -0
  13. data/lib/impala/protocol/beeswax_types.rb +192 -0
  14. data/lib/impala/protocol/data_constants.rb +12 -0
  15. data/lib/impala/protocol/data_sinks_constants.rb +12 -0
  16. data/lib/impala/protocol/data_sinks_types.rb +107 -0
  17. data/lib/impala/protocol/data_types.rb +77 -0
  18. data/lib/impala/protocol/descriptors_constants.rb +12 -0
  19. data/lib/impala/protocol/descriptors_types.rb +266 -0
  20. data/lib/impala/protocol/exprs_constants.rb +12 -0
  21. data/lib/impala/protocol/exprs_types.rb +345 -0
  22. data/lib/impala/protocol/facebook_service.rb +706 -0
  23. data/lib/impala/protocol/fb303_constants.rb +14 -0
  24. data/lib/impala/protocol/fb303_types.rb +24 -0
  25. data/lib/impala/protocol/frontend_constants.rb +12 -0
  26. data/lib/impala/protocol/frontend_types.rb +347 -0
  27. data/lib/impala/protocol/hive_metastore_constants.rb +52 -0
  28. data/lib/impala/protocol/hive_metastore_types.rb +697 -0
  29. data/lib/impala/protocol/impala_internal_service.rb +244 -0
  30. data/lib/impala/protocol/impala_internal_service_constants.rb +12 -0
  31. data/lib/impala/protocol/impala_internal_service_types.rb +362 -0
  32. data/lib/impala/protocol/impala_plan_service.rb +310 -0
  33. data/lib/impala/protocol/impala_plan_service_constants.rb +12 -0
  34. data/lib/impala/protocol/impala_plan_service_types.rb +36 -0
  35. data/lib/impala/protocol/impala_service.rb +260 -0
  36. data/lib/impala/protocol/impala_service_constants.rb +12 -0
  37. data/lib/impala/protocol/impala_service_types.rb +46 -0
  38. data/lib/impala/protocol/java_constants_constants.rb +42 -0
  39. data/lib/impala/protocol/java_constants_types.rb +14 -0
  40. data/lib/impala/protocol/opcodes_constants.rb +12 -0
  41. data/lib/impala/protocol/opcodes_types.rb +309 -0
  42. data/lib/impala/protocol/partitions_constants.rb +12 -0
  43. data/lib/impala/protocol/partitions_types.rb +44 -0
  44. data/lib/impala/protocol/plan_nodes_constants.rb +12 -0
  45. data/lib/impala/protocol/plan_nodes_types.rb +345 -0
  46. data/lib/impala/protocol/planner_constants.rb +12 -0
  47. data/lib/impala/protocol/planner_types.rb +78 -0
  48. data/lib/impala/protocol/runtime_profile_constants.rb +12 -0
  49. data/lib/impala/protocol/runtime_profile_types.rb +97 -0
  50. data/lib/impala/protocol/state_store_service.rb +244 -0
  51. data/lib/impala/protocol/state_store_service_constants.rb +12 -0
  52. data/lib/impala/protocol/state_store_service_types.rb +185 -0
  53. data/lib/impala/protocol/state_store_subscriber_service.rb +82 -0
  54. data/lib/impala/protocol/state_store_subscriber_service_constants.rb +12 -0
  55. data/lib/impala/protocol/state_store_subscriber_service_types.rb +67 -0
  56. data/lib/impala/protocol/statestore_types_constants.rb +12 -0
  57. data/lib/impala/protocol/statestore_types_types.rb +77 -0
  58. data/lib/impala/protocol/status_constants.rb +12 -0
  59. data/lib/impala/protocol/status_types.rb +44 -0
  60. data/lib/impala/protocol/thrift_hive_metastore.rb +4707 -0
  61. data/lib/impala/protocol/types_constants.rb +12 -0
  62. data/lib/impala/protocol/types_types.rb +86 -0
  63. data/lib/impala/version.rb +3 -0
  64. data/thrift/Data.thrift +52 -0
  65. data/thrift/DataSinks.thrift +61 -0
  66. data/thrift/Descriptors.thrift +115 -0
  67. data/thrift/Exprs.thrift +134 -0
  68. data/thrift/Frontend.thrift +193 -0
  69. data/thrift/ImpalaInternalService.thrift +265 -0
  70. data/thrift/ImpalaPlanService.thrift +44 -0
  71. data/thrift/ImpalaService.thrift +105 -0
  72. data/thrift/JavaConstants.thrift +60 -0
  73. data/thrift/Opcodes.thrift +317 -0
  74. data/thrift/Partitions.thrift +41 -0
  75. data/thrift/PlanNodes.thrift +184 -0
  76. data/thrift/Planner.thrift +72 -0
  77. data/thrift/RuntimeProfile.thrift +58 -0
  78. data/thrift/StateStoreService.thrift +121 -0
  79. data/thrift/StateStoreSubscriberService.thrift +64 -0
  80. data/thrift/StatestoreTypes.thrift +50 -0
  81. data/thrift/Status.thrift +31 -0
  82. data/thrift/Types.thrift +71 -0
  83. data/thrift/beeswax.thrift +175 -0
  84. data/thrift/fb303.thrift +112 -0
  85. data/thrift/hive_metastore.thrift +528 -0
  86. metadata +206 -0
metadata ADDED
@@ -0,0 +1,206 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: impala
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Colin Marc
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-01-24 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: thrift
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 25
29
+ segments:
30
+ - 0
31
+ - 9
32
+ version: "0.9"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: rake
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ type: :development
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ name: eden
51
+ prerelease: false
52
+ requirement: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 3
58
+ segments:
59
+ - 0
60
+ version: "0"
61
+ type: :development
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: pry
65
+ prerelease: false
66
+ requirement: &id004 !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ hash: 3
72
+ segments:
73
+ - 0
74
+ version: "0"
75
+ type: :development
76
+ version_requirements: *id004
77
+ description: A ruby client for Cloudera's Impala
78
+ email:
79
+ - colinmarc@gmail.com
80
+ executables: []
81
+
82
+ extensions: []
83
+
84
+ extra_rdoc_files: []
85
+
86
+ files:
87
+ - .gitignore
88
+ - Gemfile
89
+ - LICENSE.txt
90
+ - README.md
91
+ - Rakefile
92
+ - impala.gemspec
93
+ - lib/impala.rb
94
+ - lib/impala/connection.rb
95
+ - lib/impala/cursor.rb
96
+ - lib/impala/protocol.rb
97
+ - lib/impala/protocol/beeswax_constants.rb
98
+ - lib/impala/protocol/beeswax_service.rb
99
+ - lib/impala/protocol/beeswax_types.rb
100
+ - lib/impala/protocol/data_constants.rb
101
+ - lib/impala/protocol/data_sinks_constants.rb
102
+ - lib/impala/protocol/data_sinks_types.rb
103
+ - lib/impala/protocol/data_types.rb
104
+ - lib/impala/protocol/descriptors_constants.rb
105
+ - lib/impala/protocol/descriptors_types.rb
106
+ - lib/impala/protocol/exprs_constants.rb
107
+ - lib/impala/protocol/exprs_types.rb
108
+ - lib/impala/protocol/facebook_service.rb
109
+ - lib/impala/protocol/fb303_constants.rb
110
+ - lib/impala/protocol/fb303_types.rb
111
+ - lib/impala/protocol/frontend_constants.rb
112
+ - lib/impala/protocol/frontend_types.rb
113
+ - lib/impala/protocol/hive_metastore_constants.rb
114
+ - lib/impala/protocol/hive_metastore_types.rb
115
+ - lib/impala/protocol/impala_internal_service.rb
116
+ - lib/impala/protocol/impala_internal_service_constants.rb
117
+ - lib/impala/protocol/impala_internal_service_types.rb
118
+ - lib/impala/protocol/impala_plan_service.rb
119
+ - lib/impala/protocol/impala_plan_service_constants.rb
120
+ - lib/impala/protocol/impala_plan_service_types.rb
121
+ - lib/impala/protocol/impala_service.rb
122
+ - lib/impala/protocol/impala_service_constants.rb
123
+ - lib/impala/protocol/impala_service_types.rb
124
+ - lib/impala/protocol/java_constants_constants.rb
125
+ - lib/impala/protocol/java_constants_types.rb
126
+ - lib/impala/protocol/opcodes_constants.rb
127
+ - lib/impala/protocol/opcodes_types.rb
128
+ - lib/impala/protocol/partitions_constants.rb
129
+ - lib/impala/protocol/partitions_types.rb
130
+ - lib/impala/protocol/plan_nodes_constants.rb
131
+ - lib/impala/protocol/plan_nodes_types.rb
132
+ - lib/impala/protocol/planner_constants.rb
133
+ - lib/impala/protocol/planner_types.rb
134
+ - lib/impala/protocol/runtime_profile_constants.rb
135
+ - lib/impala/protocol/runtime_profile_types.rb
136
+ - lib/impala/protocol/state_store_service.rb
137
+ - lib/impala/protocol/state_store_service_constants.rb
138
+ - lib/impala/protocol/state_store_service_types.rb
139
+ - lib/impala/protocol/state_store_subscriber_service.rb
140
+ - lib/impala/protocol/state_store_subscriber_service_constants.rb
141
+ - lib/impala/protocol/state_store_subscriber_service_types.rb
142
+ - lib/impala/protocol/statestore_types_constants.rb
143
+ - lib/impala/protocol/statestore_types_types.rb
144
+ - lib/impala/protocol/status_constants.rb
145
+ - lib/impala/protocol/status_types.rb
146
+ - lib/impala/protocol/thrift_hive_metastore.rb
147
+ - lib/impala/protocol/types_constants.rb
148
+ - lib/impala/protocol/types_types.rb
149
+ - lib/impala/version.rb
150
+ - thrift/Data.thrift
151
+ - thrift/DataSinks.thrift
152
+ - thrift/Descriptors.thrift
153
+ - thrift/Exprs.thrift
154
+ - thrift/Frontend.thrift
155
+ - thrift/ImpalaInternalService.thrift
156
+ - thrift/ImpalaPlanService.thrift
157
+ - thrift/ImpalaService.thrift
158
+ - thrift/JavaConstants.thrift
159
+ - thrift/Opcodes.thrift
160
+ - thrift/Partitions.thrift
161
+ - thrift/PlanNodes.thrift
162
+ - thrift/Planner.thrift
163
+ - thrift/RuntimeProfile.thrift
164
+ - thrift/StateStoreService.thrift
165
+ - thrift/StateStoreSubscriberService.thrift
166
+ - thrift/StatestoreTypes.thrift
167
+ - thrift/Status.thrift
168
+ - thrift/Types.thrift
169
+ - thrift/beeswax.thrift
170
+ - thrift/fb303.thrift
171
+ - thrift/hive_metastore.thrift
172
+ homepage: https://github.com/colinmarc/impala-ruby
173
+ licenses: []
174
+
175
+ post_install_message:
176
+ rdoc_options: []
177
+
178
+ require_paths:
179
+ - lib
180
+ required_ruby_version: !ruby/object:Gem::Requirement
181
+ none: false
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ hash: 3
186
+ segments:
187
+ - 0
188
+ version: "0"
189
+ required_rubygems_version: !ruby/object:Gem::Requirement
190
+ none: false
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ hash: 3
195
+ segments:
196
+ - 0
197
+ version: "0"
198
+ requirements: []
199
+
200
+ rubyforge_project:
201
+ rubygems_version: 1.8.24
202
+ signing_key:
203
+ specification_version: 3
204
+ summary: A ruby client for Cloudera's Impala
205
+ test_files: []
206
+