thrift Questions
3
Solved
Tell me, please, what's different in declare two methods
service MyService {
void test1();
oneway void test2();
}
Manual says
The oneway modifier indicates that the client only makes a requ...
Kelliekellina asked 16/1, 2018 at 15:21
2
In the spark-shell (scala), we import,
org.apache.spark.sql.hive.thriftserver._
for starting Hive Thrift server programatically for a particular hive context as
HiveThriftServer2.startWithContext(h...
Sweptwing asked 14/4, 2016 at 16:32
2
Here I have to work on some services which use Apache Thrift 0.13.0, but recently a new version is released and when I use the brew install thrift command on the terminal it installs the latest Thr...
Eme asked 15/2, 2021 at 23:34
2
Solved
I have following content in pom.xml:
...
<dependencies>
...
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<versio...
3
Solved
I'm using maven-antrun-plugin to execute a thrift shell command. I can compile one file per <exec> with <arg value="...path/to/file.thrift" />, but I would like to compile all .thrift f...
6
Solved
11
Solved
What are the possible causes for ABstractMethodError?
Exception in thread "pool-1-thread-1" java.lang.AbstractMethodError:
org.apache.thrift.ProcessFunction.isOneway()Z
at org.apache.thrift.Pro...
2
I have 2 components which need to communicate with each other in bidirectional way. For now I have 2 approaches, one is setting up RPC server in both side to establish the 2-way communication. Anot...
3
Solved
I am trying to Build and Install the Apache Thrift compiler and libraries
As shown in instructions run ./configure && make
And I get this error:
thrift 0.9.3
Building C++ Library .........
5
Solved
Trying to install thift gem after OSX El Capitan upgrade:
$ gem install thrift
Building native extensions. This could take a while...
ERROR: Error installing thrift:
ERROR: Failed to build gem...
4
Are there any tools that exist to generate a Thrift interface definition from a Protobuf definition?
Yoga asked 8/3, 2012 at 20:59
2
I've tried to convert a thrift object to json in python.
If I try to use json.dumps(thriftObj), it fails with the following:
TypeError: MyThriftObj(...) is not JSON serializable
I tried fixing i...
5
Solved
I cannot, for the life of me, successfully run "gem install thrift", the thing fails when building the gem's native extensions; this is the output:
(acib708) ~ -> gem install thrift
Building na...
Fregger asked 29/10, 2013 at 4:57
2
Solved
I want to write a unit test that performs HTTP requests directly (instead of using django.test.client.Client).
If you're curious why - it's because I want to test a Thrift-over-HTTP API that I exp...
Illsuited asked 18/6, 2009 at 6:25
6
I am trying to install Apache Thrift on my Mac, but am hitting an issue.
I followed the installation steps on this page, but when I try to do the steps for installing libevent, I get the following ...
2
Solved
What is the best process for making a required field optional in thrift. For example, I have a struct...
struct Message {
1: required double userID;
2: required string content;
...
}
... but...
Restriction asked 1/6, 2016 at 2:3
4
My python version:2.7.8
thrift version:0.9.2
python-thrift version:0.9.2
OS: centOS 6.8
My test.thrift file:
const string HELLO_IN_KOREAN = "an-nyoung-ha-se-yo"
const string HELLO_IN_FRENCH = ...
4
I've installed Thrift on my Mac using Homebrew: brew install thrift --with-python
That did some work and finished w/o errors reported. I have thrift on my path.
I write a simple python client fro...
1
Solved
I'm working on adding HiveServer2 support to my company's R data-access package. I'm curious what the best way of generating an R Thrift client would be. I'm considering writing an R wrapper around...
15
What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?
Jeter asked 16/9, 2008 at 4:7
4
Solved
I'm new to Thrift.
I think I installed it correctly. I have the folowing libs :
luckyan315@ubuntu:~/code/thrift-0.8.0/tutorial/cpp$ ll /usr/local/lib/
total 11496
drwxr-xr-x 4 root root 4096 Mar ...
4
This problem is like Installing thrift on CentOS 6.5 64 bit and Cassandra PDO
, but he is on CentOS, I am runninc MacOS.
checking for gawk... (cached) awk
checking for ranlib... (cached) ranlib
./...
5
Solved
I am trying to Build and Install the Apache Thrift compiler and libraries
I had to type this command is shown in instructions
./configure && make
But I get this error:
checking for gcc......
4
I am trying to write a generic scala utility function for dealing with Apache Thrift generated Java classes. All Thrift generated Java classes extend the TBase interface with the following signatur...
4
Solved
Is there any way to serialize a dictionary using protocol buffers, or I'll have to use Thrift if I need that?
Gangster asked 16/11, 2010 at 13:53
1 Next >
© 2022 - 2025 — McMap. All rights reserved.