Questions tagged [thrift]

Thrift is a software framework for scalable cross-platform, cross-language services development available from Apache.

Thrift combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, C, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, Delphi, Graphviz, Go and OCaml.

Thrift's primary goal is to enable efficient and reliable communication across platforms and programming languages by abstracting the portions of each language that tend to require the most customization into a common library that is implemented in each language.

Originally developed at Facebook, Thrift was open sourced in April 2007 and entered the Apache Incubator in May, 2008. Thrift graduated from the Incubator in October, 2010.

1894 questions
0
votes
0 answers

Apache Thrift Java client with PHP server

How to setup Apache Thrift communication between a Java client and a PHP server? I have PHP codes on server side: $header('Content-Type', 'application/x-thrift'); $handler = new MyApplicationHandler(); $processor = new…
Jack Chen
  • 79
  • 1
  • 7
0
votes
0 answers

Error while starting thrift server for kerberos enabled hbase

i have enabled kerberos on the HDP cluster and trying to connect to Hiveserver2 using python, But getting some error with thrift server . Tried starting the thrift but getting error as below.Please hlep. backtrace: hdp296m1:~ # hbase thrift…
0
votes
1 answer

Is there a way to convert thrift IDL into wsdl spec?

Is there any open source library or online service that could automagicaly generate wsdl spec on the base of the thrift IDL? The goal is to build facade API on the top of existing thrift API that would allow coupling with ansient systems via SOAP…
Alexander Vasiljev
  • 1,974
  • 3
  • 19
  • 27
0
votes
0 answers

How to build the Thrift lib (c++) for WinCE?

I made some attempts, it seems that MISSING the c++11 related libraries, such as can not find , etc. HELP
0
votes
3 answers

Connect to Hbase from Python and happybase / Thrift

I have installed Cloudera Manager Express 5.9.0 installed HBase, with Thrift server running on port 9090 on CentOS 7.3 in a VirtualBox vm. Please help in figuring out why I am unable to successfully interface via happybase, or help identify next…
starvingmind
  • 290
  • 3
  • 12
0
votes
1 answer

Encoding Lists in Thrift (Python)

I'm wondering what's the best way to binary encode a list of structs with ThriftPy. The only way I've found is to create another wrapper struct and remove the binary prefix/suffix from the stream but this is very hacky and there should definitely be…
neverlastn
  • 2,164
  • 16
  • 23
0
votes
1 answer

C# Setting up call to hbase server using thrift - cant find reference to: calculator.client

Sorry in advance if this is something simple I just can not find the solution on google. I am getting started with setting up C# code to connect to an HBASE/Hadoop server. I have found some examples to start the…
Brad
  • 3,454
  • 3
  • 27
  • 50
0
votes
1 answer

How do I insert a SuperColumn with python/thrift?

Using the python/thrift interface I am trying to insert a SuperColumn just like the Comments example in WTF is a Supercolumn.. I've gotten as far as to create the SuperColumn and figured out that I should use batch_mutate to insert it. But I don't…
NA.
  • 6,451
  • 9
  • 36
  • 36
0
votes
1 answer

Apache Thrift errors with CMakeLists.txt

I am trying to build the C++ library for Apache Thrift and I am getting a cmake error that I cannot quite decipher, this is the series of steps I followed to get the error git clone https://git-wip-us.apache.org/repos/asf/thrift.git cd…
Curious
  • 20,870
  • 8
  • 61
  • 146
0
votes
0 answers

Many Docker Containers and Thrift

I have a Thrift file that I want many different containers to use. I need this file to be "compiled" (for lack of a better word) by Thrift in these several containers at Docker build time. I tried putting the Thrift code in a parent directory and…
user3002273
0
votes
0 answers

Thrift::ApplicationException: Thrift::ApplicationException

I have installed rbhive gem(0.6.0) in ruby 1.9 and I am getting this error when I am trying to run the following piece of code in irb: res = RBHive.tcli_connect('172.16.1.52', :port => 9_999) do |connection|
connection.fetch('SHOW…
Soham
  • 13
  • 7
0
votes
1 answer

How to make thrift to work with Angular 2 and webpack?

From a simple Angular 2 + Webpack working project, I'm trying to integrate Apache Thrift by implementing the Thrift's tutorial. I reach a point where everything works except the browser cannot find the Thrift module: Uncaught ReferenceError: Thrift…
osechet
  • 426
  • 3
  • 11
0
votes
1 answer

Ruminations on highly-scalable and modular distributed server side architectures

Mine is not really a question, it's more of a call for opinions - and perhaps this isn't even the right place to post it. Nevertheless, the community here is very informed, and there's no harm in trying... I was thinking about ways to create a…
David Semeria
  • 542
  • 3
  • 15
0
votes
1 answer

Force spring to start request

is there way to force spring to start new request from some point of code? The reason beyond it is, that I am replacing communication from Rest to Thrift, but there are beans with request scope.
hybaken
  • 466
  • 1
  • 5
  • 16
0
votes
1 answer

thrift + hbase exception (in docker containers)

I'm trying to split legacy system combined from hbase and php module into two separated containers with the following docker-compose file: version: '2' services: php: image: my-legacy-php volumes: - ~/workspace/php:/workspace/php …
ItayB
  • 10,377
  • 9
  • 50
  • 77
1 2 3
99
100