init with pulsar 2.10.4

This commit is contained in:
wangjialing 2023-08-11 10:56:07 +08:00
parent 93ae244a87
commit 364af243e9
5 changed files with 77 additions and 3 deletions

View File

@ -0,0 +1,17 @@
Index: pom.xml
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/pom.xml b/pom.xml
--- a/pom.xml (revision 6d321e1f03140a1b7e5a364e286dfbd969f30ba2)
+++ b/pom.xml (date 1691633613403)
@@ -2431,7 +2431,7 @@
<repository>
<id>central</id>
<layout>default</layout>
- <url>https://repo1.maven.org/maven2</url>
+ <url>https://repo.huaweicloud.com/repository/maven/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>

View File

@ -1,7 +1,7 @@
# pulsar
#### Description
Pulsar is a distributed pub-sub messaging platform with a very flexible messaging model and an intuitive client API.
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
#### Software Architecture
Software architecture description

View File

@ -1,10 +1,14 @@
# pulsar
#### 介绍
Pulsar is a distributed pub-sub messaging platform with a very flexible messaging model and an intuitive client API.
Apache Pulsar 是一个企业级的发布订阅pub-sub消息系统。向Pulsar发送数据的应用程序叫做生产者producer而从Pulsar读取数据的应用程序叫做消费者consumer。有时候消费者也被叫作订阅者。主题topic是Pulsar的核心资源一个主题可以被看成是一个通道消费者向这个通道发送数据消费者从这个通道拉取数据。
#### 软件架构
软件架构说明
Apache Pulsar 集群由两层组成:
无状态服务层,由一组接收和传递消息的 Broker 组成
有状态存储层,由一组名为 bookies 的 Apache BookKeeper 存储节点组成,可持久化地存储消息
通过分层架构实现了存储和计算分离
另外使用Apache Zookeeper进行元数据管理
#### 安装教程

Binary file not shown.

53
pulsar.spec Normal file
View File

@ -0,0 +1,53 @@
%define debug_package %{nil}
%define pulsar_ver 2.10.4
%define pkg_ver 1
%define _prefix /opt/pulsar
Summary: Cloud-Native, Distributed Messaging and Streaming
Name: pulsar
Version: %{pulsar_ver}
Release: %{pkg_ver}
License: Apache-2.0
Group: Applications/Message
URL: https://pulsar.apache.org
Source0: https://archive.apache.org/dist/pulsar/pulsar-2.10.4/apache-pulsar-2.10.4-src.tar.gz
Patch0001: 0001-use-huawei-repository.patch
BuildRoot: /root/rpmbuild/BUILDROOT/
BuildRequires: java-1.8.0-openjdk-devel,maven,systemd
Requires: java-1.8.0-openjdk,systemd
Provides: apache-pulsar
Provides: mvn(org.apche.pulsar:pulsar)
%description
Pulsar is a distributed pub-sub messaging platform with a very flexible messaging model and an intuitive client API.
%prep
%setup -q -n apache-pulsar-%{version}-src
%patch0001 -p1
%build
mvn clean install -Pcore-modules,-main -DskipTests
%install
mkdir -p $RPM_BUILD_ROOT%{_prefix}/{lib,bin,conf,examples,instances,licenses}
cd %{_builddir}/apache-pulsar-%{version}-src/distribution/server/target/
tar -xvf apache-pulsar-%{version}-bin.tar.gz
cd apache-pulsar-%{version}
cp -pr * $RPM_BUILD_ROOT%{_prefix}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%attr(-,pulsar,pulsar) %{_prefix}
%dir %attr(755, pulsar, pulsar) %{_prefix}
%pre
getent group pulsar >/dev/null || groupadd -r pulsar
getent passwd pulsar >/dev/null || useradd -r -g pulsar -d / -s /sbin/nologin pulsar
exit 0
%changelog
* Fri Aug 11 2023 Jialing Wang <wangjialing@cmss.chinamobile.com> - 2.10.4-1
- init puslar spec