Added support for multiple kafka clusters

This commit is contained in:
Nir Gazit
2021-01-19 16:59:39 +02:00
parent a81bc52801
commit 285d216403
14 changed files with 295 additions and 56 deletions
+4 -2
View File
@@ -23,6 +23,8 @@ Example:
```yaml
kafka:
clientId: backstage
brokers:
- localhost:9092
clusters:
name: prod
brokers:
- localhost:9092
```
+9 -6
View File
@@ -16,11 +16,14 @@
export interface Config {
kafka?: {
clientId: string;
brokers: string[];
ssl?: {
ca: string[];
key: string;
cert: string;
};
clusters: {
name: string;
brokers: string[];
ssl?: {
ca: string[];
key: string;
cert: string;
};
}[];
};
}
@@ -0,0 +1,45 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed 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.
*/
import '@backstage/backend-common';
import { ConfigReader } from '@backstage/config';
import { getClusterDetails } from './ClusterReader';
describe('getClusterDetails', () => {
it('empty clusters return empty cluster details', async () => {
const config = new ConfigReader({ clusters: [] });
const result = getClusterDetails(config.getConfigArray('clusters'));
expect(result).toStrictEqual([]);
});
it('two clusters return two cluster details', async () => {
const config = new ConfigReader({
clusters: [
{ name: 'cluster1', brokers: ['a', 'b'] },
{ name: 'cluster2', brokers: ['d'] },
],
});
const result = getClusterDetails(config.getConfigArray('clusters'));
expect(result).toStrictEqual([
{ name: 'cluster1', brokers: ['a', 'b'] },
{ name: 'cluster2', brokers: ['d'] },
]);
});
});
@@ -0,0 +1,37 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed 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.
*/
import { Config } from '@backstage/config';
import { ConnectionOptions } from 'tls';
import { ClusterDetails } from '../types/types';
export function getClusterDetails(config: Config[]): ClusterDetails[] {
return config.map(clusterConfig => {
const clusterDetails = {
name: clusterConfig.getString('name'),
brokers: clusterConfig.getStringArray('brokers'),
};
const sslConfig = clusterConfig.getOptional('kafka.ssl');
if (sslConfig) {
return {
...clusterDetails,
ssl: sslConfig as ConnectionOptions,
};
}
return clusterDetails;
});
}
@@ -16,22 +16,34 @@
import request from 'supertest';
import express from 'express';
import { makeRouter } from './router';
import { makeRouter, ClusterApi } from './router';
import { getVoidLogger } from '@backstage/backend-common';
import { KafkaApi } from './KafkaApi';
import { when } from 'jest-when';
describe('router', () => {
let app: express.Express;
let kafkaApi: jest.Mocked<KafkaApi>;
let apis: ClusterApi[];
let devKafkaApi: jest.Mocked<KafkaApi>;
let prodKafkaApi: jest.Mocked<KafkaApi>;
beforeAll(async () => {
kafkaApi = {
devKafkaApi = {
fetchTopicOffsets: jest.fn(),
fetchGroupOffsets: jest.fn(),
};
const router = makeRouter(getVoidLogger(), kafkaApi);
prodKafkaApi = {
fetchTopicOffsets: jest.fn(),
fetchGroupOffsets: jest.fn(),
};
apis = [
{ name: 'dev', api: devKafkaApi },
{ name: 'prod', api: prodKafkaApi },
];
const router = makeRouter(getVoidLogger(), apis);
app = express().use(router);
});
@@ -39,7 +51,7 @@ describe('router', () => {
jest.resetAllMocks();
});
describe('get /consumer/:consumerId/offsets', () => {
describe('get /:clusterId/consumer/:consumerId/offsets', () => {
it('returns topic and group offsets', async () => {
const topic1Offsets = [
{ id: 1, offset: '500' },
@@ -60,15 +72,17 @@ describe('router', () => {
partitions: [{ id: 1, offset: '456' }],
},
];
when(kafkaApi.fetchTopicOffsets)
when(prodKafkaApi.fetchTopicOffsets)
.calledWith('topic1')
.mockResolvedValue(topic1Offsets);
when(kafkaApi.fetchTopicOffsets)
when(prodKafkaApi.fetchTopicOffsets)
.calledWith('topic2')
.mockResolvedValue(topic2Offsets);
kafkaApi.fetchGroupOffsets.mockResolvedValue(groupOffsets);
when(prodKafkaApi.fetchGroupOffsets)
.calledWith('hey')
.mockResolvedValue(groupOffsets);
const response = await request(app).get('/consumer/hey/offsets');
const response = await request(app).get('/prod/consumer/hey/offsets');
expect(response.status).toEqual(200);
expect(response.body.consumerId).toEqual('hey');
@@ -95,11 +109,64 @@ describe('router', () => {
});
it('handles internal error correctly', async () => {
kafkaApi.fetchGroupOffsets.mockRejectedValue(Error('oh no'));
prodKafkaApi.fetchGroupOffsets.mockRejectedValue(Error('oh no'));
const response = await request(app).get('/consumer/hey/offsets');
const response = await request(app).get('/prod/consumer/hey/offsets');
expect(response.status).toEqual(500);
});
it('uses correct kafka cluster', async () => {
const topic1ProdOffsets = [{ id: 1, offset: '500' }];
const topic1DevOffsets = [{ id: 1, offset: '1234' }];
const groupProdOffsets = [
{
topic: 'topic1',
partitions: [{ id: 1, offset: '100' }],
},
];
const groupDevOffsets = [
{
topic: 'topic1',
partitions: [{ id: 1, offset: '567' }],
},
];
when(prodKafkaApi.fetchTopicOffsets)
.calledWith('topic1')
.mockResolvedValue(topic1ProdOffsets);
when(prodKafkaApi.fetchGroupOffsets)
.calledWith('hey')
.mockResolvedValue(groupProdOffsets);
when(devKafkaApi.fetchTopicOffsets)
.calledWith('topic1')
.mockResolvedValue(topic1DevOffsets);
when(devKafkaApi.fetchGroupOffsets)
.calledWith('hey')
.mockResolvedValue(groupDevOffsets);
const prodResponse = await request(app).get('/prod/consumer/hey/offsets');
const devResponse = await request(app).get('/dev/consumer/hey/offsets');
expect(prodResponse.status).toEqual(200);
expect(prodResponse.body.consumerId).toEqual('hey');
expect(prodResponse.body.offsets).toIncludeSameMembers([
{
topic: 'topic1',
partitionId: 1,
groupOffset: '100',
topicOffset: '500',
},
]);
expect(devResponse.status).toEqual(200);
expect(devResponse.body.consumerId).toEqual('hey');
expect(devResponse.body.offsets).toIncludeSameMembers([
{
topic: 'topic1',
partitionId: 1,
groupOffset: '567',
topicOffset: '1234',
},
]);
});
});
});
+26 -11
View File
@@ -20,31 +20,43 @@ import { Logger } from 'winston';
import { Config } from '@backstage/config';
import { KafkaApi, KafkaJsApiImpl } from './KafkaApi';
import _ from 'lodash';
import { ConnectionOptions } from 'tls';
import { getClusterDetails } from '../config/clusterReader';
export interface RouterOptions {
logger: Logger;
config: Config;
}
export interface ClusterApi {
name: string;
api: KafkaApi;
}
export const makeRouter = (
logger: Logger,
kafkaApi: KafkaApi,
kafkaApis: ClusterApi[],
): express.Router => {
const router = Router();
router.use(express.json());
router.get('/consumer/:consumerId/offsets', async (req, res) => {
const kafkaApiByClusterName = _.keyBy(kafkaApis, item => item.name);
router.get('/consumers/:clusterId/:consumerId/offsets', async (req, res) => {
const clusterId = req.params.clusterId;
const consumerId = req.params.consumerId;
logger.debug(`Fetch consumer group ${consumerId} offsets`);
logger.info(
`Fetch consumer group ${consumerId} offsets from cluster ${clusterId}`,
);
const groupOffsets = await kafkaApi.fetchGroupOffsets(consumerId);
const kafkaApi = kafkaApiByClusterName[clusterId];
const groupOffsets = await kafkaApi.api.fetchGroupOffsets(consumerId);
const groupWithTopicOffsets = await Promise.all(
groupOffsets.map(async ({ topic, partitions }) => {
const topicOffsets = _.keyBy(
await kafkaApi.fetchTopicOffsets(topic),
await kafkaApi.api.fetchTopicOffsets(topic),
partition => partition.id,
);
@@ -70,12 +82,15 @@ export async function createRouter(
logger.info('Initializing Kafka backend');
const clientId = options.config.getString('kafka.clientId');
const brokers = options.config.getStringArray('kafka.brokers');
const sslConfig = options.config.getOptional('kafka.ssl');
const ssl = sslConfig ? (sslConfig as ConnectionOptions) : undefined;
const clusters = getClusterDetails(
options.config.getConfigArray('kafka.clusters'),
);
const kafkaApi = new KafkaJsApiImpl({ clientId, brokers, logger, ssl });
const kafkaApis = clusters.map(cluster => ({
name: cluster.name,
api: new KafkaJsApiImpl({ clientId, logger, ...cluster }),
}));
return makeRouter(logger, kafkaApi);
return makeRouter(logger, kafkaApis);
}
+23
View File
@@ -0,0 +1,23 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed 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.
*/
import { ConnectionOptions } from 'tls';
export interface ClusterDetails {
name: string;
brokers: string[];
ssl?: ConnectionOptions;
}
+5 -3
View File
@@ -65,8 +65,10 @@ import { Router as KafkaRouter } from '@backstage/plugin-kafka';
```yaml
kafka:
clientId: backstage
brokers:
- localhost:9092
clusters:
- name: cluster-name
brokers:
- localhost:9092
```
6. Add `kafka.apache.org/consumer-groups` annotation to your services:
@@ -77,7 +79,7 @@ kind: Component
metadata:
# ...
annotations:
kafka.apache.org/consumer-groups: consumer-group-name
kafka.apache.org/consumer-groups: cluster-name/consumer-group-name
spec:
type: service
```
+4 -1
View File
@@ -43,8 +43,11 @@ export class KafkaBackendClient implements KafkaApi {
}
async getConsumerGroupOffsets(
clusterId: string,
consumerGroup: string,
): Promise<ConsumerGroupOffsetsResponse> {
return await this.getRequired(`/consumer/${consumerGroup}/offsets`);
return await this.getRequired(
`/consumers/${clusterId}/${consumerGroup}/offsets`,
);
}
}
+1
View File
@@ -34,6 +34,7 @@ export type ConsumerGroupOffsetsResponse = {
export interface KafkaApi {
getConsumerGroupOffsets(
clusterId: string,
consumerGroup: string,
): Promise<ConsumerGroupOffsetsResponse>;
}
@@ -20,21 +20,7 @@ import { EntityContext } from '@backstage/plugin-catalog';
import { Entity } from '@backstage/catalog-model';
describe('useConsumerGroupOffsets', () => {
const entity: Entity = {
apiVersion: 'v1',
kind: 'Component',
metadata: {
name: 'test',
annotations: {
'kafka.apache.org/consumer-groups': 'consumer',
},
},
spec: {
owner: 'guest',
type: 'Website',
lifecycle: 'development',
},
};
let entity: Entity;
const wrapper = ({ children }: PropsWithChildren<{}>) => {
return (
@@ -46,8 +32,51 @@ describe('useConsumerGroupOffsets', () => {
const subject = () => renderHook(useConsumerGroupsForEntity, { wrapper });
it('returns correct consumer group for annotation', async () => {
it('returns correct cluster and consumer group for annotation', async () => {
entity = {
apiVersion: 'v1',
kind: 'Component',
metadata: {
name: 'test',
annotations: {
'kafka.apache.org/consumer-groups': 'prod/consumer',
},
},
spec: {
owner: 'guest',
type: 'Website',
lifecycle: 'development',
},
};
const { result } = subject();
expect(result.current).toBe('consumer');
expect(result.current).toStrictEqual({
clusterId: 'prod',
consumerGroup: 'consumer',
});
});
it('fails on missing cluster', async () => {
entity = {
apiVersion: 'v1',
kind: 'Component',
metadata: {
name: 'test',
annotations: {
'kafka.apache.org/consumer-groups': 'consumer',
},
},
spec: {
owner: 'guest',
type: 'Website',
lifecycle: 'development',
},
};
const { result } = subject();
expect(() => result.current).toThrowError();
expect(result.error).toStrictEqual(
new Error(
`Failed to parse kafka consumer group annotation: got "consumer"`,
),
);
});
});
@@ -19,6 +19,15 @@ import { KAFKA_CONSUMER_GROUP_ANNOTATION } from '../../constants';
export const useConsumerGroupsForEntity = () => {
const { entity } = useEntity();
const annotation =
entity.metadata.annotations?.[KAFKA_CONSUMER_GROUP_ANNOTATION] ?? '';
const [clusterId, consumerGroup] = annotation.split('/');
return entity.metadata.annotations?.[KAFKA_CONSUMER_GROUP_ANNOTATION] ?? '';
if (!clusterId || !consumerGroup) {
throw new Error(
`Failed to parse kafka consumer group annotation: got "${annotation}"`,
);
}
return { clusterId, consumerGroup };
};
@@ -45,7 +45,7 @@ describe('useConsumerGroupOffsets', () => {
metadata: {
name: 'test',
annotations: {
'kafka.apache.org/consumer-groups': consumerGroupOffsets.consumerId,
'kafka.apache.org/consumer-groups': `cluster/${consumerGroupOffsets.consumerId}`,
},
},
spec: {
@@ -75,7 +75,7 @@ describe('useConsumerGroupOffsets', () => {
it('returns correct consumer group for annotation', async () => {
when(mockKafkaApi.getConsumerGroupOffsets)
.calledWith(consumerGroupOffsets.consumerId)
.calledWith('cluster', consumerGroupOffsets.consumerId)
.mockResolvedValue(consumerGroupOffsets);
const { result, waitForNextUpdate } = subject();
@@ -20,13 +20,16 @@ import { kafkaApiRef } from '../../api/types';
import { useConsumerGroupsForEntity } from './useConsumerGroupsForEntity';
export const useConsumerGroupsOffsetsForEntity = () => {
const consumerGroup = useConsumerGroupsForEntity();
const { clusterId, consumerGroup } = useConsumerGroupsForEntity();
const api = useApi(kafkaApiRef);
const errorApi = useApi(errorApiRef);
const { loading, value: topics, retry } = useAsyncRetry(async () => {
try {
const response = await api.getConsumerGroupOffsets(consumerGroup);
const response = await api.getConsumerGroupOffsets(
clusterId,
consumerGroup,
);
return response.offsets;
} catch (e) {
errorApi.post(e);