- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在同一个 thrift 文件中定义了 2 个服务并共享一个端口。我可以使用 serviceA 中的任何方法没问题,但每当我尝试调用 ServiceB 的任何方法时,我都会遇到异常。这是我的节俭文件 (service-a.thrift):
service ServiceA extends common.CommonService {
list<i64> getByIds(1: list<i64> ids)
...
}
service ServiceB extends common.CommonService {
list<i64> getByIds(1: list<i64> ids)
...
}
注意事项:
有什么想法吗?
最佳答案
我们也有这个需求,并通过编写一个新的 TProcessor 实现来解决,该实现创建了一个多处理器映射。唯一的问题是,对于此实现,您需要确保没有方法名称重叠 - 即不要在不同的服务器中使用像 Run() 这样的通用名称。抱歉没有将 C# 转换为 Python...
示例类:
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using Thrift;
using Thrift.Protocol;
/// <summary>
/// Processor that allows for multiple services to run under one roof. Requires no method name conflicts across services.
/// </summary>
public class MultiplexProcessor : TProcessor {
public MultiplexProcessor(IEnumerable<TProcessor> processors) {
ProcessorMap = new Dictionary<string, Tuple<TProcessor, Delegate>>();
foreach (var processor in processors) {
var processMap = (IDictionary) processor.GetType().GetField("processMap_", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(processor);
foreach (string pmk in processMap.Keys) {
var imp = (Delegate) processMap[pmk];
try {
ProcessorMap.Add(pmk, new Tuple<TProcessor, Delegate>(processor, imp));
}
catch (ArgumentException) {
throw new ArgumentException(string.Format("Method already exists in process map: {0}", pmk));
}
}
}
}
protected readonly Dictionary<string, Tuple<TProcessor, Delegate>> ProcessorMap;
internal protected Dictionary<string, Tuple<TProcessor, Delegate>> GetProcessorMap() {
return new Dictionary<string, Tuple<TProcessor, Delegate>>(ProcessorMap);
}
public bool Process(TProtocol iprot, TProtocol oprot) {
try {
TMessage msg = iprot.ReadMessageBegin();
Tuple<TProcessor, Delegate> fn;
ProcessorMap.TryGetValue(msg.Name, out fn);
if (fn == null) {
TProtocolUtil.Skip(iprot, TType.Struct);
iprot.ReadMessageEnd();
var x = new TApplicationException(TApplicationException.ExceptionType.UnknownMethod, "Invalid method name: '" + msg.Name + "'");
oprot.WriteMessageBegin(new TMessage(msg.Name, TMessageType.Exception, msg.SeqID));
x.Write(oprot);
oprot.WriteMessageEnd();
oprot.Transport.Flush();
return true;
}
Console.WriteLine("Invoking service method {0}.{1}", fn.Item1, fn.Item2);
fn.Item2.Method.Invoke(fn.Item1, new object[] {msg.SeqID, iprot, oprot});
}
catch (IOException) {
return false;
}
return true;
}
}
示例用法:
Processor = new MultiplexProcessor(
new List<TProcessor> {
new ReportingService.Processor(new ReportingServer()),
new MetadataService.Processor(new MetadataServer()),
new OtherService.Processor(new OtherService())
}
);
Server = new TThreadPoolServer(Processor, Transport);
关于python - 节俭 python - TApplicationException : Invalid method name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16318551/
我这辈子都无法成功运行“gem install thrift”,在构建 gem 的 native 扩展时失败了;这是输出: (acib708) ~ -> gem install thrift Buil
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我正在评估 thrift 作为 rpc 框架。我希望能够使用 thrift 执行发布/订阅逻辑,并且想知道如何做到这一点。 一些不同的答案可能会有所帮助: 有没有规范的方式来发布/订阅节俭? 有没有办
如何在 Thrift 中声明接口(interface)?我的意思是我有接口(interface) IClient,我将它用作服务器中登录函数的参数: public interface IServer
我是 thrift apache 的新手。我正在使用 API edenremote。当 thrift 调用函数 readMessageBegin 时,它进入循环,我没有收到任何响应,请求正在进行中 请
在thrift IDL中,服务响应也可以是list或map吗? 因为,通常我看到它是一些结构或一些原始类型,如 string、double 等。 另外,我可以验证的来源是什么?还请注明出处。 最佳答案
如果我需要将数据(而不是插入) append 到特定的 super 列中,我该怎么办? 例如: 考虑下面描述的现有记录 Kespace : test columFamily: testColum Su
RELATED QUESTION: Can I directly serialize to a file using PHP's thrift library? 我必须使用apache thrift来
我想保护 thrift 服务器(只是加密,并将使用 acl 进行简单的身份验证),发现这个:http://architects.dzone.com/articles/how-secure-and-ap
我制作了一个像这样的简单的节俭文件: thrifttest.thrift namespace cpp thrifttest namespace d thrifttest namespace java
我正在开发一个微服务系统,该系统是在 Scala 中以 Finagle 和 Thrift 作为平台实现的。 由于有一些服务已经有一段时间没有人接触了,我需要查明它们是否已经被使用(或者更确切地说,哪些
我的机器上安装了 thrift(Ubuntu 12.04)。我使用的 thrift 版本是 0.9.0。我尝试为 thrift 接口(interface)文件生成 python 文件,如下所示 thr
根据 the thread about Strings and security in java , String 类型在用于密码属性时可能很危险,主要是因为字符串是不可变的(可以在 VM 镜像中找到
我有一些带有 perl-server 和 php-client 的 Apache Thrift (v.0.6.1) 测试应用程序。 我无法解释的行为:如果我们使用无效参数调用服务器方法,我们会在服务器
感谢 Cloudera 发行版,我在本地机器上运行了一个 HBase master/datanode + Thrift 服务器,并且可以编写和测试 HBase 客户端程序并使用它,没问题。 但是,我现
我在同一个 thrift 文件中定义了 2 个服务并共享一个端口。我可以使用 serviceA 中的任何方法没问题,但每当我尝试调用 ServiceB 的任何方法时,我都会遇到异常。这是我的节俭文件
我读过 this和 this .但是,我的情况不同。我不需要服务器上的多路复用服务,也不需要与服务器的多个连接。 背景: 对于我的大数据项目,我需要计算给定大数据的核心集。Coreset 是大数据的一
关于数据类型,我坚持使用 Thrift。 现在,当我将 Integer 值映射到 thrift 生成的 bean 时,我在 idl 定义中使用了 i32 类型。 class MyBean { In
我正在使用 Cassandra 和 Thrift 库做一些工作。我意识到这些是非常早期的库,并且(毫无疑问)会在某个时候发生变化。 我一直在使用以下 link寻求帮助设置我的 C# 代码以写入和读取我
在 IDL 文件中,我有 struct CaseInfo { 1: CaseID = '', 2: EvID = 'foobar', } struct Case { 1: Ca
我是一名优秀的程序员,十分优秀!