active questions tagged thrift - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T10:01:38Z http://stackoverflow.com/feeds/tag/thrift http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1938380/using-thrift-for-php-to-c-translations 0 Using Thrift for PHP to C++ translations Matt 2009-12-21T05:31:34Z 2009-12-21T05:31:34Z <p>Hey all,</p> <p>I was wondering if anyone had any experience with thrift and could provide an example of taking a PHP array (or object) and translate it into a C++ array (or object). Either that or point me to documentation on how to do this in PHP (which is incomplete on their website!)</p> <p>Thanks! Matt Mueller</p> http://stackoverflow.com/questions/1889854/any-success-using-apache-thrift-on-iphone 1 Any success using Apache Thrift on iPhone? jhs 2009-12-11T18:06:24Z 2009-12-11T21:20:09Z <p>Has anybody done or seen a deployment of <a href="http://incubator.apache.org/thrift/" rel="nofollow">Apache Thrift</a> in an iPhone app?</p> <p>I am wondering if is a reasonable solution for a high-volume, low(er)-latency network service for iPhones compared to HTTP.</p> <p>One noteworthy thing I found is a <a href="http://issues.apache.org/jira/browse/THRIFT-549" rel="nofollow">bug report</a> about running Thrift on the iPhone, which seems to have been fixed. But that doesn't necessarily indicate that it's a done deal.</p> http://stackoverflow.com/questions/69316/biggest-differences-of-thrift-vs-protocol-buffers 11 Biggest differences of Thrift vs Protocol Buffers? Bob 2008-09-16T04:07:42Z 2009-12-11T17:40:10Z <p>What are the biggest pros and cons of <a href="http://incubator.apache.org/thrift/" rel="nofollow">Apache Thrift</a> vs <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">Google's Protocol Buffers</a>?</p> http://stackoverflow.com/questions/1838639/c-and-thrift-reference-needed-to-get-started 1 C++ and Thrift: Reference needed to get started sviiya 2009-12-03T09:06:30Z 2009-12-03T20:10:25Z <p>Hello, I have read about Thrift while trying to find out how to use Google Protocol Buffers. I have been searching for some reference that shows how to go about using it with a simple working example for C++. It's been frustrating not being able to find any such site. It is a bit surprising that almost all the examples use Java, a language that has cross-platform RMI already at its disposal. May be I have missed something in searching, and I would very much appreciate if anyone can give a reference to a tutorial with a working example, however small. TIA, -Sviya</p> http://stackoverflow.com/questions/1561693/how-can-you-reverse-engineer-a-binary-thrift-file 0 How can you reverse engineer a binary thrift file? Teflon Ted 2009-10-13T17:19:32Z 2009-10-13T23:10:29Z <p>I've been asked to process some files serialized as binary (not text/JSON unfortunately) <a href="http://incubator.apache.org/thrift/" rel="nofollow">Thrift</a> objects, but I don't have access to the program or programmer that created the files, so I have no idea of their structure, field order, etc. Is there a way using the Thrift libraries to open a binary file and analyze it, getting a list of the field types, values, nesting, etc.?</p> http://stackoverflow.com/questions/1303408/thrift-erlang-string 2 Thrift/Erlang string steamer25 2009-08-20T00:49:09Z 2009-08-20T22:26:53Z <p>I'm trying to write a simple Thrift server in Erlang that takes a string and returns a string.</p> <p>Everything seems to be working up to the point of calling my function:</p> <pre><code>handle_function(Function, Args) when is_atom(Function), is_tuple(Args) -&gt; case apply(?MODULE, Function, tuple_to_list(Args)) of ok -&gt; ok; Reply -&gt; {reply, Reply} end. test([X]) -&gt; "You sent: " ++ X. </code></pre> <p>I'm getting a function_clause. The stack trace shows the following:</p> <blockquote> <p>{function_clause, [{server, test, [&lt;&lt;"w00t">>]},<br /> {server,handle_function, 2}, ...</p> </blockquote> <p>My handle_function is copied from the tutorial file so I won't be surprised if I need to tweak it. Any ideas?</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other 7 Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? Parand 2008-11-17T19:48:44Z 2009-08-17T23:41:49Z <p>We're looking into transport/protocol solutions and were about to do various performance tests, so I thought I'd check with the community if they've already done this:</p> <p>Has anyone done server performance tests for simple echo services as well as serialization/deserialization for various messages sizes comparing EJB3, Thrift, and Protocol Buffers on Linux?</p> <p>Primarily languages will be Java, C/C++, Python, and PHP.</p> <p>Update: I'm still very interested in this, if anyone has done any further benchmarks please let me know. Also, very interesting benchmark showing <a href="http://bouncybouncy.net/ramblings/posts/more%5Fon%5Fjson%5Fvs%5Fthrift%5Fand%5Fprotocol%5Fbuffers/" rel="nofollow">compressed JSON performing similar / better than Thrift / Protocol Buffers</a>, so I'm throwing JSON into this question as well.</p> http://stackoverflow.com/questions/1197678/using-thrift-with-delphi-win32 0 Using Thrift with Delphi Win32 Jamo 2009-07-29T01:43:09Z 2009-07-29T17:27:09Z <p>I'm interested in connecting to the Evernote Service API, which uses Thrift, from a Delphi Win32 app I am developing. I have done very little work with web services in Delphi, and nothing at all with Thrift. Where would be the best place to get up to speed w/using Thrift from Delphi?</p> http://stackoverflow.com/questions/1173722/thrift-c-getrows 0 Thrift C# getRows rideon88 2009-07-23T18:44:21Z 2009-07-23T18:44:21Z <p>I'm having trouble implementing the Thrift API in my c# program. The lib's are built and it seems to run like it should, but one function is giving me trouble. As I understand it, getRows() is supposed to return a list of TRowResult, however it's only returning the first row in my table. My foreach loop only runs once. Anyone have experience with thrift in C#?</p> <pre><code>var rows = Client.getRows(this.TableName); foreach (var i in rows) { tempD.Clear(); foreach (var j in i.Columns) { tempD[toString(j.Key)] = toString(j.Value.Value); } table[int.Parse(toString(i.Row))] = tempD; } return table; </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/850291/write-php-array-in-hbase-using-thrift 1 Write php array in HBase using thrift Ovidiu Eftimie 2009-05-11T21:56:59Z 2009-07-12T18:00:02Z <p>I have a Thrift php client and I want to write in a HBase table and I'm doing the following:</p> <pre><code> $mutations = array( new Mutation( array( 'column' =&gt; 'entry:num', 'value' =&gt; array('a','b','c') ) ), ); $client-&gt;mutateRow( $t, $row, $mutations ); </code></pre> <p>The problem is that when inserting in HBase the value, which is an array, gets converted to 'Array' instead of storing the elements of the array. How can I store the list as an array (or byte array)</p> http://stackoverflow.com/questions/954945/large-number-of-simulteneous-connections-in-thrift 1 Large number of simulteneous connections in thrift. kyku 2009-06-05T09:06:57Z 2009-06-24T21:58:10Z <p>Hello, I'm trying to write a simple server with Thrift. At the beginning it looked promising, but I've stumbled into a problem with a number of clients connected at the same time. I'm using TThreadPoolServer, which allows 4 client to connect and then blocks other clients until I kill one from the connected. What can I do to allow more (possibly several hundreds) clients to be connected at the same time, without increasing the number of threads. I assumed that the worker threads allow to perform one client request at a time, but it looks like one thread handles one connection until it is closed. I'd like to avoid a situation when my clients has to reopen a socket to perform an action.</p> http://stackoverflow.com/questions/1011088/access-django-testserver-from-django-test 0 Access Django testserver from Django test ibz 2009-06-18T06:25:18Z 2009-06-18T08:10:10Z <p>Hi!</p> <p>I want to write a unit test that performs HTTP requests directly (instead of using django.test.client.Client).</p> <p>If you're curious why - it's because I want to test a Thrift-over-HTTP API that I expose from my Django application - and I want to use the Thrift client in the unit test.</p> <p>The problem is that during tests, the server is not actually being run. When using django.test.client.Client, it will simply call the view functions instead of actually making a HTTP request. (Please correct me if I'm wrong.)</p> <p>So what would be the best way to force the test framework to start the HTTP server?</p> <p>I tried writing a bash script that does something like this:</p> <pre><code>./manage.py testserver --addrport 7000 &amp; PID=$! sleep 5 ./manage.py test --no-input kill $PID </code></pre> <p>But that is messy (and doesn't really work) because 1) I need the sleep (otherwise the test will start before the DB is initialized by the test server) and 2) the test will try to initialize the database again (after the testserver already initialized it).</p> <p>Any other solutions to this?</p> <p>Thank you.</p> http://stackoverflow.com/questions/751771/how-can-i-re-spawn-a-thrift-server-in-java-after-an-exception 1 How can I re-spawn a thrift server in java after an exception? Phillip Oldham 2009-04-15T13:46:52Z 2009-04-15T14:51:35Z <p>I'm new to java and have written a small, but quite important, thrift service in java. </p> <p>I've noticed that occasionally it'll stop serving without any error messages; it seems that the java process just dies, randomly, without a stack-trace or exception.</p> <p>What would be the best way to ensure this process stays alive even after an error? Here's the main function, if it will help:</p> <pre><code>public static void main(String [] args) { try { MyAppServiceHandler handler = new MyAppServiceHandler(); MyApp.Processor processor = new MyApp.Processor(handler); TServerTransport serverTransport = new TServerSocket(8080); TServer server = null; server = new TSimpleServer(processor, serverTransport); System.out.println("Starting thrift server..."); server.serve(); } catch (TTransportException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } </code></pre> http://stackoverflow.com/questions/742136/how-to-incorporate-code-generation-to-a-c-solution 1 How to incorporate code generation to a C# solution? ripper234 2009-04-12T18:09:45Z 2009-04-15T04:05:28Z <p>(<a href="http://stackoverflow.com/questions/582934/c-code-generation">This question</a> is rather similar, but the only answer does not seem to be answering my needs).</p> <p>I am thinking of using <a href="http://wiki.apache.org/thrift/" rel="nofollow">Thrift</a> in C#, and am considering how exactly the build process would work. Do C# projects in Visual Studio 2008 support custom build actions that generate C# classes?</p> <p>I found the "Custom Tool" option, but I'm not sure it's what I'm looking for ... it only allows design-time usage (not integral to the build process, but rather right-click "Run Custom Tool").</p> <p><strong>Update</strong></p> <p>Prebuild events that Fionn suggested are indeed suboptimal, as they don't take dependencies into account and prolong the build process. Also, they are managed from a central location instead of per-file.</p> http://stackoverflow.com/questions/677739/preloading-java-classes-libraries-at-jar-startup 3 Preloading java classes/libraries at jar startup? Phillip Oldham 2009-03-24T14:51:03Z 2009-03-24T16:22:47Z <p>I've written a Thrift server in Java to take advantage of a specific Java package/library, but I'm not a java programmer. </p> <p>The problem is; I'm seeing a time-out for the first RPC call to the server. Subsequest requests are executed without any issues, and its only affecting clients written in certain (but essential) languages.</p> <p>My current thought is that the server times-out on the response because upon first call it has to load all the libraries required for the request. Some Thrift client implementations must be handling the time-out better than others, possibly keeping the request open a little longer.</p> <p>Is there a way in java to preload the libraries I'm using when I first initiate the .jar file so there isn't a delay on the first request?</p> <p><strong>Solution:</strong> I got around the problem (and some further ones raised) by increasing the timeout from the thrift client(s). However, I've implemented the static/Class.forName answer also to help things along, which works great. Thanks!</p> http://stackoverflow.com/questions/461319/would-you-recommend-google-protocol-buffers-or-caucho-hessian-for-a-cross-languag 3 Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format? Vihung 2009-01-20T13:44:35Z 2009-03-11T01:22:44Z <p>Would you recommend Google Protocol Buffers or Caucho Hessian for a cross-language over-the-wire binary format? Or anything else, for that matter - Facebook Thrift for example?</p> http://stackoverflow.com/questions/249985/making-thrift-calls-from-a-c-app-in-windows 2 Making Thrift calls from a C++ app in Windows korona 2008-10-30T12:22:08Z 2009-02-06T10:34:12Z <p>As the title says, I have a Windows app written in C++ from which I need to make calls to remote Thrift services, and I'm a bit lost on the subject, to be honest. <a href="http://wiki.apache.org/thrift/ThriftInstallationWin32" rel="nofollow">http://wiki.apache.org/thrift/ThriftInstallationWin32</a> states that "The Thrift C++ runtime library does not currently work on Windows". Does that mean I'm out of luck, or is there a workaround?</p> http://stackoverflow.com/questions/163711/taking-thrift-files-from-an-api-and-building-the-net-dll-file 0 Taking thrift files from an API, and building the .NET dll file Daniel Marashlian 2008-10-02T17:59:36Z 2008-10-17T23:55:39Z <p>I can't figure out how to compile thrift files for C#. I've read, "thrift files which can then be compiled down to language-specific interfaces for a wide variety of different programming platforms (Java, PHP, C/C++, Cocoa, Perl, C#, Ruby, etc.)."</p> <p>I was looking here: <a href="http://www.markhneedham.com/blog/2008/08/29/c-thrift-examples/" rel="nofollow">http://www.markhneedham.com/blog/2008/08/29/c-thrift-examples/</a> and it's like I have to compile the compiler, and then build the C# version from the thrift files provided.</p> <p>Any ideas on how to do this?</p>