1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
|
package kafka
import (
"errors"
"fmt"
"io"
"math/rand"
"net"
"sync"
"syscall"
"time"
"github.com/optiopay/kafka/v2/proto"
)
const (
// StartOffsetNewest configures the consumer to fetch messages produced
// after creating the consumer.
StartOffsetNewest = -1
// StartOffsetOldest configures the consumer to fetch starting from the
// oldest message available.
StartOffsetOldest = -2
)
var (
// ErrNoData is returned by consumers on Fetch when the retry limit is set
// and exceeded.
ErrNoData = errors.New("no data")
// Make sure interfaces are implemented
_ Client = &Broker{}
_ Consumer = &consumer{}
_ Producer = &producer{}
_ OffsetCoordinator = &offsetCoordinator{}
)
// Client is the interface implemented by Broker.
type Client interface {
Producer(conf ProducerConf) Producer
Consumer(conf ConsumerConf) (Consumer, error)
OffsetCoordinator(conf OffsetCoordinatorConf) (OffsetCoordinator, error)
OffsetEarliest(topic string, partition int32) (offset int64, err error)
OffsetLatest(topic string, partition int32) (offset int64, err error)
Close()
}
// Consumer is the interface that wraps the Consume method.
//
// Consume reads a message from a consumer, returning an error when
// encountered.
type Consumer interface {
Consume() (*proto.Message, error)
}
// BatchConsumer is the interface that wraps the ConsumeBatch method.
//
// ConsumeBatch reads a batch of messages from a consumer, returning an error
// when encountered.
type BatchConsumer interface {
ConsumeBatch() ([]*proto.Message, error)
}
// Producer is the interface that wraps the Produce method.
//
// Produce writes the messages to the given topic and partition.
// It returns the offset of the first message and any error encountered.
// The offset of each message is also updated accordingly.
type Producer interface {
Produce(topic string, partition int32, messages ...*proto.Message) (offset int64, err error)
}
// OffsetCoordinator is the interface which wraps the Commit and Offset methods.
type OffsetCoordinator interface {
Commit(topic string, partition int32, offset int64) error
Offset(topic string, partition int32) (offset int64, metadata string, err error)
}
type topicPartition struct {
topic string
partition int32
}
func (tp topicPartition) String() string {
return fmt.Sprintf("%s:%d", tp.topic, tp.partition)
}
type clusterMetadata struct {
created time.Time
nodes map[int32]string // node ID to address
endpoints map[topicPartition]int32 // partition to leader node ID
partitions map[string]int32 // topic to number of partitions
controllerId int32 // ID node which run cluster controller
}
// BrokerConf represents the configuration of a broker.
type BrokerConf struct {
// Kafka client ID.
ClientID string
// LeaderRetryLimit limits the number of connection attempts to a single
// node before failing. Use LeaderRetryWait to control the wait time
// between retries.
//
// Defaults to 10.
LeaderRetryLimit int
// LeaderRetryWait sets a limit to the waiting time when trying to connect
// to a single node after failure.
//
// Defaults to 500ms.
//
// Timeout on a connection is controlled by the DialTimeout setting.
LeaderRetryWait time.Duration
// AllowTopicCreation enables a last-ditch "send produce request" which
// happens if we do not know about a topic. This enables topic creation
// if your Kafka cluster is configured to allow it.
//
// Defaults to False.
AllowTopicCreation bool
// Any new connection dial timeout.
//
// Default is 10 seconds.
DialTimeout time.Duration
// DialRetryLimit limits the number of connection attempts to every node in
// cluster before failing. Use DialRetryWait to control the wait time
// between retries.
//
// Defaults to 10.
DialRetryLimit int
// DialRetryWait sets a limit to the waiting time when trying to establish
// broker connection to single node to fetch cluster metadata.
//
// Defaults to 500ms.
DialRetryWait time.Duration
// ReadTimeout is TCP read timeout
//
// Default is 30 seconds
ReadTimeout time.Duration
// RetryErrLimit limits the number of retry attempts when an error is
// encountered.
//
// Default is 10.
RetryErrLimit int
// RetryErrWait controls the wait duration between retries after failed
// fetch request.
//
// Default is 500ms.
RetryErrWait time.Duration
// DEPRECATED 2015-07-10 - use Logger instead
//
// TODO(husio) remove
//
// Logger used by the broker.
Log interface {
Print(...interface{})
Printf(string, ...interface{})
}
// Logger is general logging interface that can be provided by popular
// logging frameworks. Used to notify and as replacement for stdlib `log`
// package.
Logger Logger
//Settings for TLS encryption.
//You need to set all these parameters to enable TLS
//TLS CA pem
TLSCa []byte
//TLS certificate
TLSCert []byte
//TLS key
TLSKey []byte
}
func (conf *BrokerConf) useTLS() bool {
return (len(conf.TLSCa) > 0 && len(conf.TLSKey) > 0 && len(conf.TLSCert) > 0)
}
// NewBrokerConf returns the default broker configuration.
func NewBrokerConf(clientID string) BrokerConf {
return BrokerConf{
ClientID: clientID,
DialTimeout: 10 * time.Second,
DialRetryLimit: 10,
DialRetryWait: 500 * time.Millisecond,
AllowTopicCreation: false,
LeaderRetryLimit: 10,
LeaderRetryWait: 500 * time.Millisecond,
RetryErrLimit: 10,
RetryErrWait: time.Millisecond * 500,
ReadTimeout: 30 * time.Second,
Logger: &nullLogger{},
}
}
// Broker is an abstract connection to kafka cluster, managing connections to
// all kafka nodes.
type Broker struct {
conf BrokerConf
mu sync.Mutex
metadata clusterMetadata
conns map[int32]*connection
nodeAddresses []string
}
// Dial connects to any node from a given list of kafka addresses and after
// successful metadata fetch, returns broker.
//
// The returned broker is not initially connected to any kafka node.
func Dial(nodeAddresses []string, conf BrokerConf) (*Broker, error) {
if len(nodeAddresses) == 0 {
return nil, errors.New("no addresses provided")
}
broker := &Broker{
conf: conf,
conns: make(map[int32]*connection),
nodeAddresses: nodeAddresses,
}
for i := 0; i < conf.DialRetryLimit; i++ {
if i > 0 {
conf.Logger.Debug("cannot fetch metadata from any connection",
"retry", i,
"sleep", conf.DialRetryWait)
time.Sleep(conf.DialRetryWait)
}
err := broker.refreshMetadata()
if err == nil {
return broker, nil
}
conf.Logger.Error("Got an error trying to fetch metadata", "error", err)
}
return nil, fmt.Errorf("cannot connect to: %s. TLS authentication: %t", nodeAddresses, conf.useTLS())
}
func (b *Broker) getInitialAddresses() []string {
dest := make([]string, len(b.nodeAddresses))
perm := rand.Perm(len(b.nodeAddresses))
for i, v := range perm {
dest[v] = b.nodeAddresses[i]
}
return dest
}
// Close closes the broker and all active kafka nodes connections.
func (b *Broker) Close() {
b.mu.Lock()
defer b.mu.Unlock()
for nodeID, conn := range b.conns {
if err := conn.Close(); err != nil {
b.conf.Logger.Info("cannot close node connection",
"nodeID", nodeID,
"error", err)
}
}
}
// Metadata requests metadata information from any node.
func (b *Broker) Metadata() (*proto.MetadataResp, error) {
b.mu.Lock()
defer b.mu.Unlock()
return b.fetchMetadata()
}
// CreateTopic request topic creation
func (b *Broker) CreateTopic(topics []proto.TopicInfo, timeout time.Duration, validateOnly bool) (*proto.CreateTopicsResp, error) {
b.mu.Lock()
defer b.mu.Unlock()
var resp *proto.CreateTopicsResp
err := b.callOnClusterController(func(c *connection) error {
var err error
req := proto.CreateTopicsReq{
Timeout: timeout,
CreateTopicsRequests: topics,
ValidateOnly: validateOnly,
}
resp, err = c.CreateTopic(&req)
return err
})
return resp, err
}
// refreshMetadata is requesting metadata information from any node and refresh
// internal cached representation.
// Because it's changing internal state, this method requires lock protection,
// but it does not acquire nor release lock itself.
func (b *Broker) refreshMetadata() error {
meta, err := b.fetchMetadata()
if err == nil {
b.cacheMetadata(meta)
}
return err
}
// muRefreshMetadata calls refreshMetadata, but protects it with broker's lock.
func (b *Broker) muRefreshMetadata() error {
b.mu.Lock()
err := b.refreshMetadata()
b.mu.Unlock()
return err
}
func (b *Broker) callOnClusterController(f func(c *connection) error) error {
checkednodes := make(map[int32]bool)
var err error
var conn *connection
controllerID := b.metadata.controllerId
// try all existing connections first
for nodeID, conn := range b.conns {
checkednodes[nodeID] = true
if nodeID == controllerID {
err = f(conn)
if err != nil {
continue
}
return nil
}
}
// try all nodes that we know of that we're not connected to
for nodeID, addr := range b.metadata.nodes {
if nodeID == controllerID {
conn, err = b.getConnection(addr)
if err != nil {
return err
}
err = f(conn)
// we had no active connection to this node, so most likely we don't need it
_ = conn.Close()
return err
}
}
if err != nil {
return err
} else {
return errors.New("Cannot get connection to controller node")
}
}
func (b *Broker) callOnActiveConnection(f func(c *connection) error) error {
checkednodes := make(map[int32]bool)
var err error
var conn *connection
// try all existing connections first
for nodeID, conn := range b.conns {
checkednodes[nodeID] = true
err = f(conn)
if err != nil {
continue
}
return nil
}
// try all nodes that we know of that we're not connected to
for nodeID, addr := range b.metadata.nodes {
if _, ok := checkednodes[nodeID]; ok {
continue
}
conn, err = b.getConnection(addr)
if err != nil {
continue
}
err = f(conn)
// we had no active connection to this node, so most likely we don't need it
_ = conn.Close()
if err != nil {
continue
}
return nil
}
for _, addr := range b.getInitialAddresses() {
conn, err = b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect to seed node",
"address", addr,
"error", err)
continue
}
err = f(conn)
_ = conn.Close()
if err == nil {
return nil
}
}
return err
}
// fetchMetadata is requesting metadata information from any node and return
// protocol response if successful
//
// If "topics" are specified, only fetch metadata for those topics (can be
// used to create a topic)
//
// Because it's using metadata information to find node connections it's not
// thread safe and using it require locking.
func (b *Broker) fetchMetadata(topics ...string) (*proto.MetadataResp, error) {
checkednodes := make(map[int32]bool)
// try all existing connections first
for nodeID, conn := range b.conns {
checkednodes[nodeID] = true
resp, err := conn.Metadata(&proto.MetadataReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
Topics: topics,
})
if err != nil {
b.conf.Logger.Debug("cannot fetch metadata from node",
"nodeID", nodeID,
"error", err)
continue
}
return resp, nil
}
// try all nodes that we know of that we're not connected to
for nodeID, addr := range b.metadata.nodes {
if _, ok := checkednodes[nodeID]; ok {
continue
}
conn, err := b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect",
"address", addr,
"error", err)
continue
}
resp, err := conn.Metadata(&proto.MetadataReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
Topics: topics,
})
// we had no active connection to this node, so most likely we don't need it
_ = conn.Close()
if err != nil {
b.conf.Logger.Debug("cannot fetch metadata from node",
"nodeID", nodeID,
"error", err)
continue
}
return resp, nil
}
for _, addr := range b.getInitialAddresses() {
conn, err := b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect to seed node",
"address", addr,
"error", err)
continue
}
resp, err := conn.Metadata(&proto.MetadataReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
Topics: topics,
})
_ = conn.Close()
if err == nil {
return resp, nil
}
b.conf.Logger.Debug("cannot fetch metadata",
"address", addr,
"error", err)
}
return nil, errors.New("cannot fetch metadata. No topics created?")
}
// cacheMetadata creates new internal metadata representation using data from
// given response. It's call has to be protected with lock.
//
// Do not call with partial metadata response, this assumes we have the full
// set of metadata in the response
func (b *Broker) cacheMetadata(resp *proto.MetadataResp) {
if !b.metadata.created.IsZero() {
b.conf.Logger.Debug("rewriting old metadata",
"age", time.Now().Sub(b.metadata.created))
}
b.metadata = clusterMetadata{
created: time.Now(),
nodes: make(map[int32]string),
endpoints: make(map[topicPartition]int32),
partitions: make(map[string]int32),
}
b.metadata.controllerId = resp.ControllerID
for _, node := range resp.Brokers {
addr := fmt.Sprintf("%s:%d", node.Host, node.Port)
b.metadata.nodes[node.NodeID] = addr
}
for _, topic := range resp.Topics {
for _, part := range topic.Partitions {
dest := topicPartition{topic.Name, part.ID}
b.metadata.endpoints[dest] = part.Leader
}
b.metadata.partitions[topic.Name] = int32(len(topic.Partitions))
}
b.conf.Logger.Debug("new metadata cached")
}
// PartitionCount returns how many partitions a given topic has. If a topic
// is not known, 0 and an error are returned.
func (b *Broker) PartitionCount(topic string) (int32, error) {
b.mu.Lock()
defer b.mu.Unlock()
count, ok := b.metadata.partitions[topic]
if ok {
return count, nil
}
return 0, fmt.Errorf("topic %s not found in metadata", topic)
}
// muLeaderConnection returns connection to leader for given partition. If
// connection does not exist, broker will try to connect first and add store
// connection for any further use.
//
// Failed connection retry is controlled by broker configuration.
//
// If broker is configured to allow topic creation, then if we don't find
// the leader we will return a random broker. The broker will error if we end
// up producing to it incorrectly (i.e., our metadata happened to be out of
// date).
func (b *Broker) muLeaderConnection(topic string, partition int32) (conn *connection, err error) {
tp := topicPartition{topic, partition}
b.mu.Lock()
defer b.mu.Unlock()
for retry := 0; retry < b.conf.LeaderRetryLimit; retry++ {
if retry != 0 {
b.mu.Unlock()
b.conf.Logger.Debug("cannot get leader connection",
"topic", topic,
"partition", partition,
"retry", retry,
"sleep", b.conf.LeaderRetryWait.String())
time.Sleep(b.conf.LeaderRetryWait)
b.mu.Lock()
}
nodeID, ok := b.metadata.endpoints[tp]
if !ok {
err = b.refreshMetadata()
if err != nil {
b.conf.Logger.Info("cannot get leader connection: cannot refresh metadata",
"error", err)
continue
}
nodeID, ok = b.metadata.endpoints[tp]
if !ok {
err = proto.ErrUnknownTopicOrPartition
// If we allow topic creation, now is the point where it is likely that this
// is a brand new topic, so try to get metadata on it (which will trigger
// the creation process)
if b.conf.AllowTopicCreation {
_, err := b.fetchMetadata(topic)
if err != nil {
b.conf.Logger.Info("failed to fetch metadata for new topic",
"topic", topic,
"error", err)
}
} else {
b.conf.Logger.Info("cannot get leader connection: unknown topic or partition",
"topic", topic,
"partition", partition,
"endpoint", tp)
}
continue
}
}
conn, ok = b.conns[nodeID]
if !ok {
addr, ok := b.metadata.nodes[nodeID]
if !ok {
b.conf.Logger.Info("cannot get leader connection: no information about node",
"nodeID", nodeID)
err = proto.ErrBrokerNotAvailable
delete(b.metadata.endpoints, tp)
continue
}
conn, err = b.getConnection(addr)
if err != nil {
b.conf.Logger.Info("cannot get leader connection: cannot connect to node",
"address", addr,
"error", err)
delete(b.metadata.endpoints, tp)
continue
}
b.conns[nodeID] = conn
}
return conn, nil
}
return nil, err
}
func (b *Broker) getConnection(addr string) (*connection, error) {
var c *connection
var err error
if b.conf.useTLS() {
c, err = newTLSConnection(addr, b.conf.TLSCa, b.conf.TLSCert, b.conf.TLSKey, b.conf.DialTimeout, b.conf.ReadTimeout)
} else {
c, err = newTCPConnection(addr, b.conf.DialTimeout, b.conf.ReadTimeout)
}
if err != nil {
return nil, err
}
return c, nil
}
// coordinatorConnection returns connection to offset coordinator for given group.
//
// Failed connection retry is controlled by broker configuration.
func (b *Broker) muCoordinatorConnection(consumerGroup string) (conn *connection, resErr error) {
b.mu.Lock()
defer b.mu.Unlock()
for retry := 0; retry < b.conf.LeaderRetryLimit; retry++ {
if retry != 0 {
b.mu.Unlock()
time.Sleep(b.conf.LeaderRetryWait)
b.mu.Lock()
}
// first try all already existing connections
for _, conn := range b.conns {
resp, err := conn.ConsumerMetadata(&proto.ConsumerMetadataReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
ConsumerGroup: consumerGroup,
})
if err != nil {
b.conf.Logger.Debug("cannot fetch coordinator metadata",
"consumGrp", consumerGroup,
"error", err)
resErr = err
continue
}
if resp.Err != nil {
b.conf.Logger.Debug("coordinator metadata response error",
"consumGrp", consumerGroup,
"error", resp.Err)
resErr = err
continue
}
addr := fmt.Sprintf("%s:%d", resp.CoordinatorHost, resp.CoordinatorPort)
conn, err := b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect to node",
"coordinatorID", resp.CoordinatorID,
"address", addr,
"error", err)
resErr = err
continue
}
b.conns[resp.CoordinatorID] = conn
return conn, nil
}
// if none of the connections worked out, try with fresh data
if err := b.refreshMetadata(); err != nil {
b.conf.Logger.Debug("cannot refresh metadata",
"error", err)
resErr = err
continue
}
for nodeID, addr := range b.metadata.nodes {
if _, ok := b.conns[nodeID]; ok {
// connection to node is cached so it was already checked
continue
}
conn, err := b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect to node",
"nodeID", nodeID,
"address", addr,
"error", err)
resErr = err
continue
}
b.conns[nodeID] = conn
resp, err := conn.ConsumerMetadata(&proto.ConsumerMetadataReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
ConsumerGroup: consumerGroup,
})
if err != nil {
b.conf.Logger.Debug("cannot fetch metadata",
"consumGrp", consumerGroup,
"error", err)
resErr = err
continue
}
if resp.Err != nil {
b.conf.Logger.Debug("metadata response error",
"consumGrp", consumerGroup,
"error", resp.Err)
resErr = err
continue
}
addr := fmt.Sprintf("%s:%d", resp.CoordinatorHost, resp.CoordinatorPort)
conn, err = b.getConnection(addr)
if err != nil {
b.conf.Logger.Debug("cannot connect to node",
"coordinatorID", resp.CoordinatorID,
"address", addr,
"error", err)
resErr = err
continue
}
b.conns[resp.CoordinatorID] = conn
return conn, nil
}
resErr = proto.ErrNoCoordinator
}
return nil, resErr
}
// muCloseDeadConnection is closing and removing any reference to given
// connection. Because we remove dead connection, additional request to refresh
// metadata is made
//
// muCloseDeadConnection call it protected with broker's lock.
func (b *Broker) muCloseDeadConnection(conn *connection) {
b.mu.Lock()
defer b.mu.Unlock()
for nid, c := range b.conns {
if c == conn {
b.conf.Logger.Debug("closing dead connection",
"nodeID", nid)
delete(b.conns, nid)
_ = c.Close()
if err := b.refreshMetadata(); err != nil {
b.conf.Logger.Debug("cannot refresh metadata",
"error", err)
}
return
}
}
}
// offset will return offset value for given partition. Use timems to specify
// which offset value should be returned.
func (b *Broker) offset(topic string, partition int32, timems int64) (offset int64, err error) {
for retry := 0; retry < b.conf.RetryErrLimit; retry++ {
if retry != 0 {
time.Sleep(b.conf.RetryErrWait)
err = b.muRefreshMetadata()
if err != nil {
continue
}
}
var conn *connection
conn, err = b.muLeaderConnection(topic, partition)
if err != nil {
return 0, err
}
var resp *proto.OffsetResp
resp, err = conn.Offset(&proto.OffsetReq{
RequestHeader: proto.RequestHeader{ClientID: b.conf.ClientID},
ReplicaID: -1, // any client
Topics: []proto.OffsetReqTopic{
{
Name: topic,
Partitions: []proto.OffsetReqPartition{
{
ID: partition,
TimeMs: timems,
MaxOffsets: 2,
},
},
},
},
})
if err != nil {
if _, ok := err.(*net.OpError); ok || err == io.EOF || err == syscall.EPIPE {
// Connection is broken, so should be closed, but the error is
// still valid and should be returned so that retry mechanism have
// chance to react.
b.conf.Logger.Debug("connection died while sending message",
"topic", topic,
"partition", partition,
"error", err)
b.muCloseDeadConnection(conn)
}
continue
}
for _, t := range resp.Topics {
if t.Name != topic {
b.conf.Logger.Debug("unexpected topic information",
"expected", topic,
"got", t.Name)
continue
}
for _, part := range t.Partitions {
if part.ID != partition {
b.conf.Logger.Debug("unexpected partition information",
"topic", t.Name,
"expected", partition,
"got", part.ID)
continue
}
if err = part.Err; err == nil {
if len(part.Offsets) == 0 {
return 0, nil
} else {
return part.Offsets[0], nil
}
}
}
}
}
return 0, errors.New("incomplete fetch response")
}
// OffsetEarliest returns the oldest offset available on the given partition.
func (b *Broker) OffsetEarliest(topic string, partition int32) (offset int64, err error) {
return b.offset(topic, partition, -2)
}
// OffsetLatest return the offset of the next message produced in given partition
func (b *Broker) OffsetLatest(topic string, partition int32) (offset int64, err error) {
return b.offset(topic, partition, -1)
}
// ProducerConf represents the configuration of a producer.
type ProducerConf struct {
// Compression method to use, defaulting to proto.CompressionNone.
Compression proto.Compression
// Message ACK configuration. Use proto.RequiredAcksAll to require all
// servers to write, proto.RequiredAcksLocal to wait only for leader node
// answer or proto.RequiredAcksNone to not wait for any response.
// Setting this to any other, greater than zero value will make producer to
// wait for given number of servers to confirm write before returning.
RequiredAcks int16
// Timeout of single produce request. By default, 5 seconds.
RequestTimeout time.Duration
// RetryLimit specify how many times message producing should be retried in
// case of failure, before returning the error to the caller. By default
// set to 10.
RetryLimit int
// RetryWait specify wait duration before produce retry after failure. By
// default set to 200ms.
RetryWait time.Duration
// Logger used by producer. By default, reuse logger assigned to broker.
Logger Logger
}
// NewProducerConf returns a default producer configuration.
func NewProducerConf() ProducerConf {
return ProducerConf{
Compression: proto.CompressionNone,
RequiredAcks: proto.RequiredAcksAll,
RequestTimeout: 5 * time.Second,
RetryLimit: 10,
RetryWait: 200 * time.Millisecond,
Logger: nil,
}
}
// producer is the link to the client with extra configuration.
type producer struct {
conf ProducerConf
broker *Broker
}
// Producer returns new producer instance, bound to the broker.
func (b *Broker) Producer(conf ProducerConf) Producer {
if conf.Logger == nil {
conf.Logger = b.conf.Logger
}
return &producer{
conf: conf,
broker: b,
}
}
// Produce writes messages to the given destination. Writes within the call are
// atomic, meaning either all or none of them are written to kafka. Produce
// has a configurable amount of retries which may be attempted when common
// errors are encountered. This behaviour can be configured with the
// RetryLimit and RetryWait attributes.
//
// Upon a successful call, the message's Offset field is updated.
func (p *producer) Produce(topic string, partition int32, messages ...*proto.Message) (offset int64, err error) {
if len(messages) == 0 {
// Newer versions of kafka get upset if we send 0 messages.
// Previously, it would return the latest offset, which we
// can no longer easily get here.
return 0, nil
}
for retry := 0; retry < p.conf.RetryLimit; retry++ {
if retry != 0 {
time.Sleep(p.conf.RetryWait)
}
offset, err = p.produce(topic, partition, messages...)
switch err {
case nil:
for i, msg := range messages {
msg.Offset = int64(i) + offset
}
if retry != 0 {
p.conf.Logger.Debug("Produced message after retry",
"retry", retry,
"topic", topic)
}
return offset, err
case io.EOF, syscall.EPIPE:
// p.produce call is closing connection when this error shows up,
// but it's also returning it so that retry loop can count this
// case
// we cannot handle this error here, because there is no direct
// access to connection
default:
if err := p.broker.muRefreshMetadata(); err != nil {
p.conf.Logger.Debug("cannot refresh metadata",
"error", err)
}
}
p.conf.Logger.Debug("Cannot produce messages",
"retry", retry,
"topic", topic,
"error", err)
}
p.conf.Logger.Debug("Abort to produce after retrying messages",
"retry", p.conf.RetryLimit,
"topic", topic)
return 0, err
}
// produce send produce request to leader for given destination.
func (p *producer) produce(topic string, partition int32, messages ...*proto.Message) (offset int64, err error) {
conn, err := p.broker.muLeaderConnection(topic, partition)
if err != nil {
return 0, err
}
req := proto.ProduceReq{
RequestHeader: proto.RequestHeader{ClientID: p.broker.conf.ClientID},
Compression: p.conf.Compression,
RequiredAcks: p.conf.RequiredAcks,
Timeout: p.conf.RequestTimeout,
Topics: []proto.ProduceReqTopic{
{
Name: topic,
Partitions: []proto.ProduceReqPartition{
{
ID: partition,
Messages: messages,
},
},
},
},
}
resp, err := conn.Produce(&req)
if err != nil {
if _, ok := err.(*net.OpError); ok || err == io.EOF || err == syscall.EPIPE {
// Connection is broken, so should be closed, but the error is
// still valid and should be returned so that retry mechanism have
// chance to react.
p.conf.Logger.Debug("connection died while sending message",
"topic", topic,
"partition", partition,
"error", err)
p.broker.muCloseDeadConnection(conn)
}
return 0, err
}
if req.RequiredAcks == proto.RequiredAcksNone {
return 0, err
}
// we expect single partition response
found := false
for _, t := range resp.Topics {
if t.Name != topic {
p.conf.Logger.Debug("unexpected topic information received",
"expected", topic,
"got", t.Name)
continue
}
for _, part := range t.Partitions {
if part.ID != partition {
p.conf.Logger.Debug("unexpected partition information received",
"topic", t.Name,
"expected", partition,
"got", part.ID)
continue
}
found = true
offset = part.Offset
err = part.Err
}
}
if !found {
return 0, errors.New("incomplete produce response")
}
return offset, err
}
// ConsumerConf represents the configuration of a consumer.
type ConsumerConf struct {
// Topic name that should be consumed
Topic string
// Partition ID that should be consumed.
Partition int32
// RequestTimeout controls fetch request timeout. This operation is
// blocking the whole connection, so it should always be set to a small
// value. By default it's set to 50ms.
// To control fetch function timeout use RetryLimit and RetryWait.
RequestTimeout time.Duration
// RetryLimit limits fetching messages a given amount of times before
// returning ErrNoData error.
//
// Default is -1, which turns this limit off.
RetryLimit int
// RetryWait controls the duration of wait between fetch request calls,
// when no data was returned.
//
// Default is 50ms.
RetryWait time.Duration
// RetryErrLimit limits the number of retry attempts when an error is
// encountered.
//
// Default is 10.
RetryErrLimit int
// RetryErrWait controls the wait duration between retries after failed
// fetch request.
//
// Default is 500ms.
RetryErrWait time.Duration
// MinFetchSize is the minimum size of messages to fetch in bytes.
//
// Default is 1 to fetch any message available.
MinFetchSize int32
// MaxFetchSize is the maximum size of data which can be sent by kafka node
// to consumer.
//
// Default is 4MB.
MaxFetchSize int32
// Consumer cursor starting point. Set to StartOffsetNewest to receive only
// newly created messages or StartOffsetOldest to read everything. Assign
// any offset value to manually set cursor -- consuming starts with the
// message whose offset is equal to given value (including first message).
//
// Default is StartOffsetOldest.
StartOffset int64
// Logger used by consumer. By default, reuse logger assigned to broker.
Logger Logger
}
// NewConsumerConf returns the default consumer configuration.
func NewConsumerConf(topic string, partition int32) ConsumerConf {
return ConsumerConf{
Topic: topic,
Partition: partition,
RequestTimeout: time.Millisecond * 50,
RetryLimit: -1,
RetryWait: time.Millisecond * 50,
RetryErrLimit: 10,
RetryErrWait: time.Millisecond * 500,
MinFetchSize: 1,
MaxFetchSize: 4 * 1024 * 1024,
StartOffset: StartOffsetOldest,
Logger: nil,
}
}
// Consumer represents a single partition reading buffer. Consumer is also
// providing limited failure handling and message filtering.
type consumer struct {
broker *Broker
conf ConsumerConf
mu sync.Mutex
offset int64 // offset of next NOT consumed message
conn *connection
msgbuf []*proto.Message
}
// Consumer creates a new consumer instance, bound to the broker.
func (b *Broker) Consumer(conf ConsumerConf) (Consumer, error) {
return b.consumer(conf)
}
// BatchConsumer creates a new BatchConsumer instance, bound to the broker.
func (b *Broker) BatchConsumer(conf ConsumerConf) (BatchConsumer, error) {
return b.consumer(conf)
}
func (b *Broker) consumer(conf ConsumerConf) (*consumer, error) {
conn, err := b.muLeaderConnection(conf.Topic, conf.Partition)
if err != nil {
return nil, err
}
if conf.Logger == nil {
conf.Logger = b.conf.Logger
}
offset := conf.StartOffset
if offset < 0 {
switch offset {
case StartOffsetNewest:
off, err := b.OffsetLatest(conf.Topic, conf.Partition)
if err != nil {
return nil, err
}
offset = off
case StartOffsetOldest:
off, err := b.OffsetEarliest(conf.Topic, conf.Partition)
if err != nil {
return nil, err
}
offset = off
default:
return nil, fmt.Errorf("invalid start offset: %d", conf.StartOffset)
}
}
c := &consumer{
broker: b,
conn: conn,
conf: conf,
msgbuf: make([]*proto.Message, 0),
offset: offset,
}
return c, nil
}
// consume is returning a batch of messages from consumed partition.
// Consumer can retry fetching messages even if responses return no new
// data. Retry behaviour can be configured through RetryLimit and RetryWait
// consumer parameters.
//
// consume can retry sending request on common errors. This behaviour can
// be configured with RetryErrLimit and RetryErrWait consumer configuration
// attributes.
func (c *consumer) consume() ([]*proto.Message, error) {
var msgbuf []*proto.Message
var retry int
for len(msgbuf) == 0 {
var err error
msgbuf, err = c.fetch()
if err != nil {
return nil, err
}
if len(msgbuf) == 0 {
if c.conf.RetryWait > 0 {
time.Sleep(c.conf.RetryWait)
}
retry++
if c.conf.RetryLimit != -1 && retry > c.conf.RetryLimit {
return nil, ErrNoData
}
}
}
return msgbuf, nil
}
func (c *consumer) Consume() (*proto.Message, error) {
c.mu.Lock()
defer c.mu.Unlock()
if len(c.msgbuf) == 0 {
var err error
c.msgbuf, err = c.consume()
if err != nil {
return nil, err
}
}
msg := c.msgbuf[0]
c.msgbuf = c.msgbuf[1:]
c.offset = msg.Offset + 1
return msg, nil
}
func (c *consumer) ConsumeBatch() ([]*proto.Message, error) {
c.mu.Lock()
defer c.mu.Unlock()
batch, err := c.consume()
if err != nil {
return nil, err
}
c.offset = batch[len(batch)-1].Offset + 1
return batch, nil
}
// fetch and return next batch of messages. In case of certain set of errors,
// retry sending fetch request. Retry behaviour can be configured with
// RetryErrLimit and RetryErrWait consumer configuration attributes.
func (c *consumer) fetch() ([]*proto.Message, error) {
req := proto.FetchReq{
RequestHeader: proto.RequestHeader{ClientID: c.broker.conf.ClientID},
MaxWaitTime: c.conf.RequestTimeout,
MinBytes: c.conf.MinFetchSize,
MaxBytes: c.conf.MaxFetchSize,
Topics: []proto.FetchReqTopic{
{
Name: c.conf.Topic,
Partitions: []proto.FetchReqPartition{
{
ID: c.conf.Partition,
FetchOffset: c.offset,
MaxBytes: c.conf.MaxFetchSize,
},
},
},
},
}
var resErr error
for retry := 0; retry < c.conf.RetryErrLimit; retry++ {
if retry != 0 {
time.Sleep(c.conf.RetryErrWait)
}
if c.conn == nil {
conn, err := c.broker.muLeaderConnection(c.conf.Topic, c.conf.Partition)
if err != nil {
resErr = err
continue
}
c.conn = conn
}
resp, err := c.conn.Fetch(&req)
resErr = err
if _, ok := err.(*net.OpError); ok || err == io.EOF || err == syscall.EPIPE {
c.conf.Logger.Debug("connection died while fetching message",
"topic", c.conf.Topic,
"partition", c.conf.Partition,
"error", err)
c.broker.muCloseDeadConnection(c.conn)
c.conn = nil
continue
}
if err != nil {
c.conf.Logger.Debug("cannot fetch messages: unknown error",
"retry", retry,
"error", err)
c.broker.muCloseDeadConnection(c.conn)
c.conn = nil
continue
}
messages, shouldRetry, err := extractMessages(resp, c.conf)
if shouldRetry {
c.conf.Logger.Debug("cannot fetch messages",
"retry", retry,
"error", err)
if err := c.broker.muRefreshMetadata(); err != nil {
c.conf.Logger.Debug("cannot refresh metadata",
"error", err)
}
// The connection is fine, so don't close it,
// but we may very well need to talk to a different broker now.
// Set the conn to nil so that next time around the loop
// we'll check the metadata again to see who we're supposed to talk to.
c.conn = nil
continue
}
return messages, err
}
return nil, resErr
}
// extractMessages extracts relevant messages from a fetch response.
//
// The boolean response parameter will be true if a temporary error was
// encountered, indicating that the fetch may be retried.
func extractMessages(resp *proto.FetchResp, conf ConsumerConf) ([]*proto.Message, bool, error) {
for _, topic := range resp.Topics {
if topic.Name != conf.Topic {
conf.Logger.Warn("unexpected topic information received",
"got", topic.Name,
"expected", conf.Topic)
continue
}
for _, part := range topic.Partitions {
if part.ID != conf.Partition {
conf.Logger.Warn("unexpected partition information received",
"topic", topic.Name,
"expected", conf.Partition,
"got", part.ID)
continue
}
switch part.Err {
case proto.ErrLeaderNotAvailable,
proto.ErrNotLeaderForPartition,
proto.ErrBrokerNotAvailable,
proto.ErrUnknownTopicOrPartition:
return nil, true, part.Err
}
if part.MessageVersion < 2 {
return part.Messages, false, part.Err
}
// In the kafka > 0.11 MessageSet was replaced
// with a new structure called RecordBatch
// and Message was replaced with Record
// In order to keep API for Consumer
// here we repack Records to Messages
recordCount := 0
for _, rb := range part.RecordBatches {
recordCount += len(rb.Records)
}
messages := make([]*proto.Message, 0, recordCount)
for _, rb := range part.RecordBatches {
for _, r := range rb.Records {
m := &proto.Message{
Key: r.Key,
Value: r.Value,
Offset: rb.FirstOffset + r.OffsetDelta,
Topic: topic.Name,
Partition: part.ID,
TipOffset: part.TipOffset,
}
messages = append(messages, m)
}
}
return messages, false, part.Err
}
}
return nil, false, errors.New("incomplete fetch response")
}
// OffsetCoordinatorConf represents the configuration of an offset coordinator.
type OffsetCoordinatorConf struct {
ConsumerGroup string
// RetryErrLimit limits messages fetch retry upon failure. By default 10.
RetryErrLimit int
// RetryErrWait controls wait duration between retries after failed fetch
// request. By default 500ms.
RetryErrWait time.Duration
// Logger used by consumer. By default, reuse logger assigned to broker.
Logger Logger
}
// NewOffsetCoordinatorConf returns default OffsetCoordinator configuration.
func NewOffsetCoordinatorConf(consumerGroup string) OffsetCoordinatorConf {
return OffsetCoordinatorConf{
ConsumerGroup: consumerGroup,
RetryErrLimit: 10,
RetryErrWait: time.Millisecond * 500,
Logger: nil,
}
}
type offsetCoordinator struct {
conf OffsetCoordinatorConf
broker *Broker
mu sync.Mutex
conn *connection
}
// OffsetCoordinator returns offset management coordinator for single consumer
// group, bound to broker.
func (b *Broker) OffsetCoordinator(conf OffsetCoordinatorConf) (OffsetCoordinator, error) {
conn, err := b.muCoordinatorConnection(conf.ConsumerGroup)
if err != nil {
return nil, err
}
if conf.Logger == nil {
conf.Logger = b.conf.Logger
}
c := &offsetCoordinator{
broker: b,
conf: conf,
conn: conn,
}
return c, nil
}
// Commit is saving offset information for given topic and partition.
//
// Commit can retry saving offset information on common errors. This behaviour
// can be configured with with RetryErrLimit and RetryErrWait coordinator
// configuration attributes.
func (c *offsetCoordinator) Commit(topic string, partition int32, offset int64) error {
return c.commit(topic, partition, offset, "")
}
// Commit works exactly like Commit method, but store extra metadata string
// together with offset information.
func (c *offsetCoordinator) CommitFull(topic string, partition int32, offset int64, metadata string) error {
return c.commit(topic, partition, offset, metadata)
}
// commit is saving offset and metadata information. Provides limited error
// handling configurable through OffsetCoordinatorConf.
func (c *offsetCoordinator) commit(topic string, partition int32, offset int64, metadata string) (resErr error) {
c.mu.Lock()
defer c.mu.Unlock()
for retry := 0; retry < c.conf.RetryErrLimit; retry++ {
if retry != 0 {
c.mu.Unlock()
time.Sleep(c.conf.RetryErrWait)
c.mu.Lock()
}
// connection can be set to nil if previously reference connection died
if c.conn == nil {
conn, err := c.broker.muCoordinatorConnection(c.conf.ConsumerGroup)
if err != nil {
resErr = err
c.conf.Logger.Debug("cannot connect to coordinator",
"consumGrp", c.conf.ConsumerGroup,
"error", err)
continue
}
c.conn = conn
}
resp, err := c.conn.OffsetCommit(&proto.OffsetCommitReq{
RequestHeader: proto.RequestHeader{ClientID: c.broker.conf.ClientID},
ConsumerGroup: c.conf.ConsumerGroup,
Topics: []proto.OffsetCommitReqTopic{
{
Name: topic,
Partitions: []proto.OffsetCommitReqPartition{
{ID: partition, Offset: offset, TimeStamp: time.Now(), Metadata: metadata},
},
},
},
})
resErr = err
if _, ok := err.(*net.OpError); ok || err == io.EOF || err == syscall.EPIPE {
c.conf.Logger.Debug("connection died while commiting",
"topic", topic,
"partition", partition,
"consumGrp", c.conf.ConsumerGroup)
c.broker.muCloseDeadConnection(c.conn)
c.conn = nil
} else if err == nil {
for _, t := range resp.Topics {
if t.Name != topic {
c.conf.Logger.Debug("unexpected topic information received",
"got", t.Name,
"expected", topic)
continue
}
for _, part := range t.Partitions {
if part.ID != partition {
c.conf.Logger.Debug("unexpected partition information received",
"topic", topic,
"got", part.ID,
"expected", partition)
continue
}
return part.Err
}
}
return errors.New("response does not contain commit information")
}
}
return resErr
}
// Offset is returning last offset and metadata information committed for given
// topic and partition.
// Offset can retry sending request on common errors. This behaviour can be
// configured with with RetryErrLimit and RetryErrWait coordinator
// configuration attributes.
func (c *offsetCoordinator) Offset(topic string, partition int32) (offset int64, metadata string, resErr error) {
c.mu.Lock()
defer c.mu.Unlock()
for retry := 0; retry < c.conf.RetryErrLimit; retry++ {
if retry != 0 {
c.mu.Unlock()
time.Sleep(c.conf.RetryErrWait)
c.mu.Lock()
}
// connection can be set to nil if previously reference connection died
if c.conn == nil {
conn, err := c.broker.muCoordinatorConnection(c.conf.ConsumerGroup)
if err != nil {
c.conf.Logger.Debug("cannot connect to coordinator",
"consumGrp", c.conf.ConsumerGroup,
"error", err)
resErr = err
continue
}
c.conn = conn
}
resp, err := c.conn.OffsetFetch(&proto.OffsetFetchReq{
ConsumerGroup: c.conf.ConsumerGroup,
Topics: []proto.OffsetFetchReqTopic{
{
Name: topic,
Partitions: []int32{partition},
},
},
})
resErr = err
switch err {
case io.EOF, syscall.EPIPE:
c.conf.Logger.Debug("connection died while fetching offset",
"topic", topic,
"partition", partition,
"consumGrp", c.conf.ConsumerGroup)
c.broker.muCloseDeadConnection(c.conn)
c.conn = nil
case nil:
for _, t := range resp.Topics {
if t.Name != topic {
c.conf.Logger.Debug("unexpected topic information received",
"got", t.Name,
"expected", topic)
continue
}
for _, part := range t.Partitions {
if part.ID != partition {
c.conf.Logger.Debug("unexpected partition information received",
"topic", topic,
"expected", partition,
"get", part.ID)
continue
}
if part.Err != nil {
return 0, "", part.Err
}
return part.Offset, part.Metadata, nil
}
}
return 0, "", errors.New("response does not contain offset information")
}
}
return 0, "", resErr
}
|