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

learn more… | top users | synonyms

0
votes
0answers
11 views

Thrift or RestKit for iOS Application

Can anybody provide some input whether we should use Apache Thrift OR RestKit(or something similar) to access/send the data from my iOS application to server and vice-versa. Any pros and cons of using ...
0
votes
1answer
19 views

Hbase wildcard support

I want to do something like select * from table where name like '%name%' is there anyway to do this in Hbase ? and if there is a way so how to do that ps. I use HappyBase to communicate with Hbase ...
0
votes
1answer
34 views

How to communicate with HiveServer2 running NONE authentication

I'm trying to communicate with HiveServer2 via ruby TCPSocket. As per Thrift SASL spec, I send START message and then plain auth information. Server returns COMPLETE status with an empty payload. It ...
0
votes
0answers
6 views

Internal load balance in vpc of ec2 instances on thrfit services

We have our two servers hosted in VPC of Amazon EC2. One of them is serving one thrift service and another web server which is using it and doing some other stuff. I am trying to use load balancer on ...
1
vote
1answer
39 views

How to include remote java sources with maven?

I have a server project for which I want to provide a client library as source so that the depending project downloads, unpacks and compiles the client lib instead of using pre-compiled binaries. How ...
0
votes
1answer
39 views

How CQL3 differs from CQL2 and Thrift?

"Compact storage stores an entire row in a single column on disk instead of storing each non-primary key column in a column that corresponds to one column on disk. Using compact storage prevents you ...
1
vote
2answers
30 views

Ant build using thrift fails with Caused by: java.io.IOException: CreateProcess error=2, The system cannot find the file specified

What I want to do is: <exec executable="thrift" dir="${thriftsrc}"> <arg value="--gen java"/> <arg value="-out ${src}"/> <arg ...
0
votes
0answers
54 views

Hive queries via Python client

I have hive 0.8 installed on a hadoop cluster running in AWS EMR. I am trying to do some data QA, which involves running a hive query and fetching the results into python where some more logic is ...
-3
votes
0answers
48 views

asynchronous thrift client C++

I'm looking for asynchronous thrift client ++. I just search for them on the thrift's website (http://thrift.apache.org/docs/), but they provide no asynchronous client example. Could you show me some ...
0
votes
1answer
32 views

Cassandra createSliceQuery clarification

I'm trying to retrieve all columns of a row in Cassandra using Thrift 1.0 lib. I found some examples by Googling , in particular: SliceQuery<String, String, String> sliceQuery = ...
0
votes
1answer
53 views

How to define list<any> in Thrift?

I want to write a Thrift function which outputs a list. But, there is no such datatype in Thrift. Also, the list datatype in Thrift takes only a single datatype. How do I solve this problem?
0
votes
0answers
53 views

Error connecting: <class 'thrift.transport.TTransport.TTransportException'>

I have installed cloudera impala v0.4 via cloudera manager 4.1.3 my cluster comprises of only to slave machines slave1 --> Impala Daemon, State Store daemon slave2 --> Impala Daemon So, I am able ...
2
votes
1answer
98 views

How to call a scala function from php?

Is there any method to call a Scala function from PHP other than Thrift service? Initially I tried the Thrift service but the problem is, it works some times and some times it doesn't. Is there any ...
1
vote
1answer
46 views

Is an unbound SecurityManager really an invalid application configuration in Shiro?

I'm adding Apache Shiro to my application and I'm wondering if the following error message is truly accurate: org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to ...
-1
votes
2answers
29 views

Best way to fetch a global variable for a thrift service from a client

I have a client server architecture set up through thrift. The service has been written in java, while the client is in php. Now, as the clients might be many, I want to introduce the concept of ...
0
votes
0answers
19 views

ruby&java use thrift get error message: No version identifier, old protocol client?

ruby-rails thrift client: transport = ::Thrift::FramedTransport.new(::Thrift::Socket.new('localhost', '9001')) protocol=::Thrift::BinaryProtocol.new(transport) $thrift = ...
0
votes
1answer
30 views

Thrift transport in javascript client

I'm trying to build a javascript client for my Thrift server. The server is up and running and I can get calls to the server working with a PHP client. I just can't figure out the javascript client. ...
2
votes
1answer
57 views

What cassandra client to use for haoop integration?

I am trying to build a data services layer using cassandra as the backend store. I am new to Cassandra and not sure what client to use for cassandra - thrift or cql 3? We have a lot of mapreduce jobs ...
0
votes
1answer
48 views

Thrift python - TApplicationException: Invalid method name

I have 2 services that are defined in the same thrift file and share a port. I can use any method from serviceA no problem but whenever i try to call any of ServiceB's methods i get the exception. ...
1
vote
1answer
89 views

Example Apache Thrift service which uses HTTPS, in Python

I have been able to find examples for how to implement services using Apache Thrift which use SSL as transport .. in Java. But not in Python. I would like to use Apache Thrift to generate the ...
1
vote
1answer
59 views

Hive cdh4 thrift setup throws NoSuchFieldError: METASTORE THRIFT RETRIES

I setup Hive cdh4 on RHEL 5 with remote metastore using mysql. I created a database, in mysql, with the same name as in hive-site.xml. I started up metastore server and hive server, but whenever I try ...
0
votes
1answer
62 views

Node Thrift Deserialization

I'm trying to do a simple thrift serialize/deserialize however my deserialization if failing with the following message: ...
0
votes
0answers
116 views

Serializing and Deserialzing of Thrift Messages Using Nodejs and RabbitMQ

I need to send a thrift encoded message from a client to a server via RabbitMQ. The RabbitMQ part works just fine as I'm able to send JSON across no problem. Here is the code responsible for sending ...
0
votes
0answers
14 views

how to use LzoThriftBlockInputFormat in elephant-bird with deprecated hadoop api

DeprecatedInputFormatWrapper.setInputFormat(com.twitter.elephantbird.mapreduce.input.LzoThriftBlockInputFormat.class, jobConf); ...
-1
votes
2answers
72 views

Thrift C++ server times out, java server doesn't

I'm trying to establish communications between a PHP client and a C++ server using the Apache thrift RPC framework. After many hours of fruitless debugging, I built a java server from the same thrift ...
0
votes
1answer
53 views

Sending a stream as a property in Apache Thrift C#

I would like to consume a stream in a thrift service, for example, in a service method to have a stream or something similar as an argument to the method (for example, to be able to serialize the ...
0
votes
0answers
63 views

In Thrift, why does TThreadPoolServer not work with just one thread in the pool?

I wanted to measure the performance improvement of using a thread pool server relative to a completely non-threaded server, and it turned out that creating a pool of just one thread caused my server ...
0
votes
1answer
66 views

PHP: resolving types in different files/namespaces

I am trying to write a PHP client for a Thrift server written in C. I am following the tutorial given at http://chanian.com/2010/05/13/thrift-tutorial-a-php-client/. I am very new to PHP and, I ...
0
votes
1answer
54 views

Incorrect epoch date in node.js using thrift

I seem to be getting a different epoch date value in node.js for a thrift object than what is stored in the mongo database and returned by the service Thrift definition file (thrift v0.9.0), I have ...
0
votes
1answer
59 views

apache thrift integration with spring framework

I am looking to use thrift for my web service calls. From what I've read so far from thrift documentation is that I'll have to write a thrift file containing my POJOs and services that I want to ...
0
votes
0answers
52 views

How to read thrift json struct through erlang?

Do I have to use client/server framework in thrift? Here's my code. handle(Req, State) -> {Method, Req2} = cowboy_req:method(Req), {ok, Echo, Req3} = cowboy_req:body (Req2), %% Echo is a ...
0
votes
1answer
99 views

Simple server with Thrift and Qt

My current task is to create simple server with Thrift IPC interface based on Qt library. I have downloaded thrift, compiled, created interface.thrift file and generated stub ( --gen cpp ). Also, I ...
0
votes
2answers
83 views

Cassandra Read and Write Consistency Level for Counter Column Family?

Using Cassandra Thrift Client. I am using counter column family to keep the counts for specific page visits. Like 1000 events per second. Then what should be the read and write Consistency Level for ...
0
votes
1answer
31 views

Generic Data types design in thrift IDL

I need to design a generic data type in Thrift IDL Following is what I have come up with. I need some experts to review the same. /** * wraper over various type declaration */ struct BoolType { ...
0
votes
1answer
43 views

Writing data from different clients to separate files simutaneously

So I'm right now I have a Thrift TSimpleServer that is going to accept connection from multiple clients at once. Once those clients connect they will be sending data that is to be stored in a ...
0
votes
0answers
55 views

Getting TProtocolException: Invalid data with node.js thrift client on server side

I am trying to use node.js thrift client. I am getting error on server side TSimpleServer exception: N6apache6thrift8protocol18TProtocolExceptionE: TProtocolException: Invalid data How to fix this ...
0
votes
0answers
41 views

RVM - cannot install thrift on Amazon Linux checking strlcpy() in string.h

I'm using: Amazon Linux - 2012.09 RVM v1.19.1 Ruby ruby-1.9.3-p362 (via RVM) System ruby 1.8.7 Thrift v0.7.0 (I know there is a newer version that removes the C dependancy, however, I have a ...
1
vote
2answers
66 views

what are the nodejs datatype equivalent of container datatypes in thrift?

what are the nodejs datatype equivalent of the following thrift datatypes - List Set Map This is my .thrift file. struct Person{ 1: required string name_; 2: required map<i64,string> ...
0
votes
1answer
89 views

Connecting standalone hbase from python

I am developing a python application with hbase as backend. I have installed hbase and its shell is working perfectly. Please note, I have not yet installed hadoop as I don't have nodes.But decided to ...
0
votes
1answer
55 views

thrift node javascript namespace

I seem to be experiencing a node/thrift namespace conflict. Foo.thrift ... struct Error { 1: i32 code, 2: string message } ... which generates the following file via thrift --gen js:node ...
1
vote
0answers
60 views

Stopping Thrift TSimpleserver with deconstructor function

I have a separate class to handle my Thrift TSimpleServer. Since the serve() function blocks I'm calling it in a separate thread from my main functions. Now my main problem is even though I can get ...
0
votes
0answers
42 views

EDAM Evernote implementation

The checkversion method call get stuck at the waithHandle.waitOne() during implementaition in windows phone 8. try { var flushAsyncResult = (FlushAsyncResult) ...
0
votes
1answer
41 views

Why does the HBase Thrift API always return a thrift client connection

For every thrift API call ( using HBase Thrift in Erlang )the API returns a thrift connection: erlang example: % creating the initial connection {ok, TFactory} = ...
4
votes
2answers
328 views

Advantages of using cql over thrift

Are there any distinct advantages for using cql over thrift or is it simply a case of developers being too used to SQL? I'm wanting to switch from thrift querying to cql, the only problem is I'm not ...
0
votes
1answer
42 views

failed to update column value via thrift api

This test case will pass at the first time, but will be failed next. I don't know why it didn't update the column value to "value1" after execute insert method at the second time. [TestMethod] ...
1
vote
1answer
54 views

apache thrift fails generating recursive structs

I wanted to represent a standard tree structure in apache thrift, but I encountered following problem: [ERROR:/path_to_project/thrift/service.thrift:31] (last token was 'TCategoryTree') Type ...
1
vote
2answers
115 views

Running thrift server as daemon

Right now I'm testing the waters with Apache Thrift, and I'm currently using a TThreadedServer written in Python, but when I run the server, it is not daemonized. Is there any way to make it run as a ...
0
votes
1answer
26 views

Debugger for Thrift?

I'm looking for a tool that can sniff, throttle and modify the messages over Thrift. Something very similar to Charles Web Proxy for Web development. Is there such a thing?
2
votes
4answers
187 views

Bridging between different programming languages [closed]

This is more of a design question. I was planning on writing some web-services which implement CPU intensive algorithms. The problem that I am trying to solve is - higher level languages such as ...
0
votes
2answers
84 views

how to represent date type in apache thrift

I'm developing a service using apache thrift and I need to define periods of time. Dates are significant (YYYY-mm-dd) and time should be totally omitted (HH:ii:ss). I couldn't find any specific ...

1 2 3 4 5 12