当前位置: 首页 > news >正文

在阿里巴巴做网站多少钱2019网站的后台地址

在阿里巴巴做网站多少钱2019,网站的后台地址,网站建设长沙,福州网签本篇主要讲述pulsar topic部分#xff0c;主要从设计以及源码的视角进行讲述。在pulsar中#xff0c;一个Topic的新建、扩容以及删除操作都是由Broker来处理的#xff0c;而Topic相关的数据是存储在zookeeper上的。本篇文章模拟一个高效的学习流程进行展开 介绍使用方式(To…本篇主要讲述pulsar topic部分主要从设计以及源码的视角进行讲述。在pulsar中一个Topic的新建、扩容以及删除操作都是由Broker来处理的而Topic相关的数据是存储在zookeeper上的。本篇文章模拟一个高效的学习流程进行展开 介绍使用方式(Topic操作指令)从高纬度俯视调用流程(从服务层面看Topic的调用流程)逐步切入某个具体的操作进一步展开内部的调用流程(从代码层面看具体的调用流程)看具体的实现(看代码具体的实现) Topic操作指令 在日常对pulsar Topic操作时咱们常常会用到以下指令 //1. Topic创建 pulsar-admin topics create-partitioned-topic \persistent://my-tenant/my-namespace/my-topic \--partitions 4 //2. Topic扩容 pulsar-admin topics update-partitioned-topic \persistent://my-tenant/my-namespace/my-topic \--partitions 8 //3. Topic删除 pulsar-admin topics delete persistent://test-tenant/ns1/tp1 //4. Topic unload pulsar-admin topics unload persistent://test-tenant/ns1/tp1更多的操作可以参考 https://pulsar.apache.org/docs/3.0.x/admin-api-topics/ 在这里列举了针对分区并存储Topic的四个操作指令 Topic创建通过指令可以在指定的租户以及命名空间下创建Topic并指定分区数Topic扩容这是业务场景为了提升性能时通常会用到的操作增加指定Topic的分区数Topic删除删除不用的Topic在删之前一定要在监控上确保此Topic的上下游都没有被使用Topic unload重制Topic状态 以上就是使用方式打个比方就是猪可以用来烹饪猪脑可以用来烤脑花等等 服务层面调用流程 Pulsar用户(管理员) 跟Pulsar集群的交互流程可以提炼成上面这张表从左往右看 用户是集群管理员或者Pulsar的用户在跟Pulsar集群交互时可以通过Pulsar提供的上面三种方式。上面提供的操作指令就是第一种shell命令的方式还可以直接通过http访问rest接口方式以及使用Pulsar针对各个编程语言提供的sdk包进行操作Pulsar集群Topic相关的元数据全部存储在Zookeeper中同时为了避免高频访问Zookeeper导致的性能瓶颈Pulsar在自身服务增加了Cache在本地内存进行元数据的存储。同时在Pulsar Broker启动时会在Zookeeper添加Watcher来感知元数据的变动如果有变动会同步更新本地Cache。在有Topic元数据相关的查操作时会优先查询本地CachePulsar Topic里的数据会存在Bookkeeper中在对Topic新增/删除时会调用Bookkeeper来创建/删除 Bookkeeper中相关的数据 以上就是高纬度俯视调用流程打个比方就是猪的骨架以及神经脉络的构成这个设计/调用流程在大的方向上已经将Pulsar定型了。在学习的过程中切忌一下子就钻入细节(除非是急着解决问题)一定要有一个清晰的全貌认识在根据需要逐步切入具体的细节 代码层调用流程 在对全貌有了解后咱们开始从代码实现层面来看调用流程 首先先看通用的无论是新增、扩容、卸载还是删除Pulsar都需要让所有Broker节点感知到元数据的变化。通过下图来看看Pulsar是怎么做的 如上图所示Pulsar Broker在启动的时候会通过ZooKeeperCache对象的构造函数中创建一个ZookeeperClient对象其通过watcher方式来监听 Zookeeper中 /brokers/topics 路径下数据的变动在Topic新建时本质上就是在 /brokers/topics目录下新建一个 Topic名称的子目录Topic删除本质就是删除此目录而扩容的本质就是变更 /brokers/topics/topic名称 中分区的信息。因此Pulsar中Topic的变更感知其实就是通过Zookeeper提供的一致性写入以及watcher来实现的这也是大部分组件元数据变更的实现方案。通过上述可以看到Pulsar在感知到Topic元数据的变动后只做了一件事就是同步刷新本地的缓存。 在知道Pulsar是怎么实现的Topic变更感知后接下来看看它的Topic新建流程 如上图所示在我们通过指令调用Pulsar创建Topic后Pulsar Broker会调用ZKMetadataStore的put方法进行处理其内部罪关键的操作就是调用Zookeeper的客户端在 Zookeeper的服务端 /brokers/topics目录下创建Topic名称的新目录同时更新本地缓存AsyncLoadingCache。至此Topic创建的流程就结束了可以负责消息的读写操作。其他扩容、删除等操作也类似在这里就不一一例举了。 以上就是代码的调用流程打个比方就是猪的心脏、猪蹄的构成在深入细节时要不断的在头脑或者笔记中梳理细节的脉络否则很容易迷失在这里。 代码实现 在对各个操作的调用流程了解了之后咱们的脑海中已经有一副Pulsar Topic相关操作的地图了现在就让咱们根据地图去探索具体的“宝藏”吧。 咱们先来看看Topic创建的代码实现为了避免迷路博主在下面先整理调用栈之后再针对具体的核心代码进行讲解 PersistentTopics#createPartitionedTopic //Topic创建 服务端代码入口仅做了Topic相关的格式、权限的校验AdminResource#internalCreatePartitionedTopic //异步检查Topic是否存在以及异步调用创建TopicAdminResource#tryCreatePartitionsAsync //根据分区数循环调用异步方法tryCreatePartitionAsyncAdminResource#tryCreatePartitionAsync //调用zk服务端来创建Topic具体的某个分区ZKMetadataStore#putZKMetadataStore#storePutZKMetadataStore#storePutInternalZooKeeper#setData //这里就是创建Topic最关键的地方也就是在Zookeeper服务端创建新Topic目录下的分区信息整个调用链路还是非常清晰的因为相比kafka而言Pulsar是无主架构不需要做选主、一致性相关的操作所以代码难度整体并不算高。不过pulsar为了性能大量使用了异步处理搭配lambda操作对于不熟悉的读者会有点难度。 下面让咱们深入看下实现细节首先是入口 PersistentTopics#createPartitionedTopic public void createPartitionedTopic(...) {try {validateGlobalNamespaceOwnership(tenant, namespace); //校验当前Topic的租户-namespace二级目录是否有效validatePartitionedTopicName(tenant, namespace, encodedTopic); //未知校验什么//判断当前操作是否允许validateTopicPolicyOperation(topicName, PolicyName.PARTITION, PolicyOperation.WRITE); validateCreateTopic(topicName); //校验Topic命名避免跟服务内部Topic冲突//真正调用创建Topic的方法internalCreatePartitionedTopic(asyncResponse, numPartitions, createLocalTopicOnly);} catch (Exception e) {//}}因此我们可以看到主要就是做相关的校验主要的逻辑交给下一层AdminResource#internalCreatePartitionedTopic进一步看实现 protected void internalCreatePartitionedTopic(AsyncResponse asyncResponse, int numPartitions,boolean createLocalTopicOnly) {Integer maxTopicsPerNamespace null;try {//获取当前Namespace的策略用于校验Policies policies getNamespacePolicies(namespaceName);maxTopicsPerNamespace policies.max_topics_per_namespace;} catch (RestException e) {//....}try {if (maxTopicsPerNamespace 0) {ListString partitionedTopics getTopicPartitionList(TopicDomain.persistent);//校验当前namespace下的Topic数量已经达到限额到的话则创建新Topic失败if (partitionedTopics.size() numPartitions maxTopicsPerNamespace) {log.error([{}] Failed to create partitioned topic {}, exceed maximum number of topics in namespace, clientAppId(), topicName);resumeAsyncResponseExceptionally(asyncResponse, new RestException(Status.PRECONDITION_FAILED,Exceed maximum number of topics in namespace.));return;}}} catch (Exception e) {//....}final int maxPartitions pulsar().getConfig().getMaxNumPartitionsPerPartitionedTopic();try {//对namespace的操作进行校验validateNamespaceOperation(topicName.getNamespaceObject(), NamespaceOperation.CREATE_TOPIC);} catch (Exception e) {//....}//对分区数进行下界校验if (numPartitions 0) {asyncResponse.resume(new RestException(Status.NOT_ACCEPTABLE,Number of partitions should be more than 0));return;}//对分区数进行上界校验if (maxPartitions 0 numPartitions maxPartitions) {asyncResponse.resume(new RestException(Status.NOT_ACCEPTABLE,Number of partitions should be less than or equal to maxPartitions));return;}ListCompletableFutureVoid createFutureList new ArrayList();CompletableFutureVoid createLocalFuture new CompletableFuture();createFutureList.add(createLocalFuture);//异步调用检查Topic是否已存在checkTopicExistsAsync(topicName).thenAccept(exists - {if (exists) {log.warn([{}] Failed to create already existing topic {}, clientAppId(), topicName);asyncResponse.resume(new RestException(Status.CONFLICT, This topic already exists));return;}//核心操作异步调用创建Topic操作provisionPartitionedTopicPath(asyncResponse, numPartitions, createLocalTopicOnly).thenCompose(ignored - tryCreatePartitionsAsync(numPartitions)).whenComplete((ignored, ex) - {if (ex ! null) {createLocalFuture.completeExceptionally(ex);return;}createLocalFuture.complete(null);});}).exceptionally(ex - {//....});//如果这个Topic是全局的那么还会调用其他pulsar集群异步创建这个Topic//这里控制多个并发请求结束处理的设计值得借鉴通过轮训异步对象容器进行结果处理if (!createLocalTopicOnly topicName.isGlobal() isNamespaceReplicated(namespaceName)) {getNamespaceReplicatedClusters(namespaceName).stream().filter(cluster - !cluster.equals(pulsar().getConfiguration().getClusterName())).forEach(cluster - createFutureList.add(((TopicsImpl) pulsar().getBrokerService().getClusterPulsarAdmin(cluster).topics()).createPartitionedTopicAsync(topicName.getPartitionedTopicName(), numPartitions, true)));}FutureUtil.waitForAll(createFutureList).whenComplete((ignored, ex) - {if (ex ! null) {log.error([{}] Failed to create partitions for topic {}, clientAppId(), topicName, ex.getCause());if (ex.getCause() instanceof RestException) {asyncResponse.resume(ex.getCause());} else {resumeAsyncResponseExceptionally(asyncResponse, ex.getCause());}return;}log.info([{}] Successfully created partitions for topic {} in cluster {},clientAppId(), topicName, pulsar().getConfiguration().getClusterName());asyncResponse.resume(Response.noContent().build());});}这个方法的逻辑有些多但整体也是比较清晰的接下来进一步看看AdminResource#tryCreatePartitionsAsync的代码 protected CompletableFutureVoid tryCreatePartitionsAsync(int numPartitions) {//如果Topic不需要持久化直接结束if (!topicName.isPersistent()) {return CompletableFuture.completedFuture(null);}ListCompletableFutureVoid futures new ArrayList(numPartitions);//针对Topic的每个分区单独发起各自的创建请求for (int i 0; i numPartitions; i) {futures.add(tryCreatePartitionAsync(i, null));}//等待多个异步任务处理好return FutureUtil.waitForAll(futures);}继续看AdminResource#tryCreatePartitionAsync的实现 private CompletableFutureVoid tryCreatePartitionAsync(final int partition, CompletableFutureVoid reuseFuture) {CompletableFutureVoid result reuseFuture null ? new CompletableFuture() : reuseFuture;//获取元数据存储对象pulsar默认都是zookeeper的实现没有其他选项但支持自定义拓展OptionalMetadataStoreExtended localStore getPulsarResources().getLocalMetadataStore();if (!localStore.isPresent()) {result.completeExceptionally(new IllegalStateException(metadata store not initialized));return result;}//核心代码往元数据对象中新增这个分区的信息localStore.get().put(ZkAdminPaths.managedLedgerPath(topicName.getPartition(partition)), new byte[0], Optional.of(-1L)).thenAccept(r - {if (log.isDebugEnabled()) {log.debug([{}] Topic partition {} created., clientAppId(), topicName.getPartition(partition));}result.complete(null);}).exceptionally(ex - {//....});return result;}继续跟踪进入到ZKMetadataStore#put public CompletableFutureStat put(String path, byte[] value, OptionalLong optExpectedVersion) {return put(path, value, optExpectedVersion, EnumSet.noneOf(CreateOption.class));}public final CompletableFutureStat put(String path, byte[] data, OptionalLong optExpectedVersion,EnumSetCreateOption options) {// Ensure caches are invalidated before the operation is confirmedreturn storePut(path, data, optExpectedVersion, options).thenApply(stat - {NotificationType type stat.getVersion() 0 ? NotificationType.Created: NotificationType.Modified;if (type NotificationType.Created) {existsCache.synchronous().invalidate(path);String parent parent(path);if (parent ! null) {childrenCache.synchronous().invalidate(parent);}}metadataCaches.forEach(c - c.invalidate(path));return stat;});}继续看ZKMetadataStore#storePut操作 public CompletableFutureStat storePut(String path, byte[] value, OptionalLong optExpectedVersion,EnumSetCreateOption options) {CompletableFutureStat future new CompletableFuture();//核心方法storePutInternal(path, value, optExpectedVersion, options, future);return future;} 进去看ZKMetadataStore#storePutInternal实现 private void storePutInternal(String path, byte[] value, OptionalLong optExpectedVersion,EnumSetCreateOption options, CompletableFutureStat future) {boolean hasVersion optExpectedVersion.isPresent();int expectedVersion optExpectedVersion.orElse(-1L).intValue();try {if (hasVersion expectedVersion -1) {CreateMode createMode getCreateMode(options);ZkUtils.asyncCreateFullPathOptimistic(zkc, path, value, ZooDefs.Ids.OPEN_ACL_UNSAFE,createMode, (rc, path1, ctx, name) - {execute(() - {Code code Code.get(rc);if (code Code.OK) {future.complete(new Stat(name, 0, 0, 0, createMode.isEphemeral(), true));} else if (code Code.NODEEXISTS) {// Were emulating a request to create node, so the version is invalidfuture.completeExceptionally(getException(Code.BADVERSION, path));} else if (code Code.CONNECTIONLOSS) {// There is the chance that we caused a connection reset by sending or requesting a batch// that passed the max ZK limit. Retry with the individual operationslog.warn(Zookeeper connection loss, storePut {}, retry after 100ms, path);executor.schedule(() -storePutInternal(path, value, optExpectedVersion, options, future),100, TimeUnit.MILLISECONDS);} else {future.completeExceptionally(getException(code, path));}}, future);}, null);} else {//核心操作zkc.setData(path, value, expectedVersion, (rc, path1, ctx, stat) - {execute(() - {Code code Code.get(rc);if (code Code.OK) {future.complete(getStat(path1, stat));} else if (code Code.NONODE) {if (hasVersion) {// Were emulating here a request to update or create the znode, depending on// the versionfuture.completeExceptionally(getException(Code.BADVERSION, path));} else {// The z-node does not exist, lets create it firstput(path, value, Optional.of(-1L)).thenAccept(s - future.complete(s)).exceptionally(ex - {future.completeExceptionally(ex.getCause());return null;});}} else if (code Code.CONNECTIONLOSS) {// There is the chance that we caused a connection reset by sending or requesting a batch// that passed the max ZK limit. Retry with the individual operationslog.warn(Zookeeper connection loss, storePut {}, retry after 100ms, path);executor.schedule(() - storePutInternal(path, value, optExpectedVersion, options, future),100, TimeUnit.MILLISECONDS);} else {future.completeExceptionally(getException(code, path));}}, future);}, null);}} catch (Throwable t) {future.completeExceptionally(new MetadataStoreException(t));}}继续进入看ZooKeeper#setData的逻辑 public void setData(String path, byte[] data, int version, StatCallback cb, Object ctx) {PathUtils.validatePath(path);String serverPath this.prependChroot(path);RequestHeader h new RequestHeader();h.setType(5);SetDataRequest request new SetDataRequest();request.setPath(serverPath);request.setData(data);request.setVersion(version);SetDataResponse response new SetDataResponse();this.cnxn.queuePacket(h, new ReplyHeader(), request, response, cb, path, serverPath, ctx, (ZooKeeper.WatchRegistration)null);}走到这里基本就差不多结束了就是调用zookeeper创建 接下来看看Topic删除的代码实现为了避免迷路一样先看看调用栈 删除 校验 删除Topic相关策略 调用BK删除schema数据 调用BK删除Topic数据 删副本 删producers 删subscriptions没找到删zk数据的地方是否有定时任务一起删PersistentTopics#deleteTopicPersistentTopic#delete 疑问以及答案 在学习的过程中咱们的脑海中会诞生很多宝贵的疑问以下是博主的想法也当作是留给读者的一份“考核”可以尝试解答以及深入思考 Topic存在zk如何避免 zk成为性能瓶颈 对Topic进行变更后如何同步给其他的Broker分区分配给Broker的策略是 创建Topic的模型(包含创建流程、同步给其他服务流程、选定owner流程) zk和 MetadataCache的关系是什么 bk是以什么样的数据模型存的Topic数据删的时候是如何删的 如果是跨集群多副本的Topic删除过程如何回收其他集群的副本 pulsar的Topic可以被close吗什么场景下会被使用 pulsar如何避免大量删Topic时对线上稳定性有影响 pulsar可否像kafka一样指定分区分配方案可以的话应该如何操作 没找到删zk数据的地方是否有定时任务一起删Topic存在zk如何避免 zk成为性能瓶颈答加Cache 对Topic进行变更后如何同步给其他的Broker分区分配给Broker的策略是 创建Topic的模型(包含创建流程、同步给其他服务流程、选定owner流程) zk和 MetadataCache的关系是什么答MetadataCache是为了避免高频访问zk导致的性能瓶颈从而增加的一层本地缓存 bk是以什么样的数据模型存的Topic数据删的时候是如何删的 如果是跨集群多副本的Topic删除过程如何回收其他集群的副本 pulsar的Topic可以被close吗什么场景下会被使用 pulsar如何避免大量删Topic时对线上稳定性有影响写在最后 参考资料 http://matt33.com/2018/06/18/topic-create-alter-delete/
http://www.dnsts.com.cn/news/155063.html

相关文章:

  • 网站开发文档word网站更新方法
  • 网站推广渠道咨询网站ip pv
  • 选择赣州网站建设怎么在百度自己创网站
  • 公司请外包做的网站怎么维护莱芜都市网交友征婚
  • 做网站的封面图片哪里才有一元手游平台app
  • 网站建设中中文模板网站集约建设后网站域名规范
  • asp网站上传后台在哪php除了做网站还能做什么
  • 网站设置成灰色河南鑫安胜通建设有限公司网站
  • 建网站和做微信哪个好网站右侧浮动
  • 长沙企业网站制作服务报价壁纸网站模板
  • 自己做网站和凡科的区别wordpress 文章页模板
  • 毕节市城乡住房建设网站宝塔如何搭建网站
  • 设计师网站崩了网站制作的行业
  • 临沂h5建站淄博网站建设hiddd
  • 网上做设计的网站公司网址怎么注册
  • 自己怎么优化网站猪八戒兼职网
  • 云南省城乡和住房建设厅网站创意网站推荐
  • 建设网站软件手机优化网站建设
  • 建网站买完域名后怎么做济南网站制做
  • 付费网站怎么做德阳哪里有做网站的
  • 安徽企业建站系统平台房产网站建设公司
  • 网站反链有好处吗开发高端网站建设价格
  • 深圳建站公司告诉你十个建站步骤公司网站建设报价
  • 程序员网站开发框架网站费用属于哪个费用
  • 江苏淮安建设局网站网站文字链接
  • 酷黑网站网站开发 运行及维护
  • 企业设计网站公司四年级小新闻50字左右
  • 网站建设服装在线商城实训报告影视公司简介
  • 东莞外贸网站推广建设中国建设银行货币基金网站
  • php网站建设个人总结阿里巴巴怎么做企业网站