blob: 20c0fb0e060aa43aa995f99eae6b7aa5a202504f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
syntax = "proto3";
package v1alpha1;
option go_package = "./";
// Provides an service for reporting the mapping relationship between interface => cluster
// the cluster name will be versioned FQDN. such as "demo.default.svc.cluster.local"
service ServiceNameMappingService{
rpc registerServiceAppMapping(ServiceMappingRequest) returns (ServiceMappingResponse);
}
// When dubbo provider start up, it reports its applicationName and its interfaceName,
// and Dubbo consumer will get the service name mapping info by dds.
message ServiceMappingRequest{
// This is namespace of dubbo server
string namespace = 1;
string applicationName = 2;
repeated string interfaceNames = 3;
}
message ServiceMappingResponse{
bool success = 1;
string message = 2;
}