search
HomeJavajavaTutorialThe road of Java architect--current limiting technology and various programming languages

The programming languages ​​currently on the market are mainly object-oriented. Object-oriented must start with some of the most basic things. For example, I got married at the age of 24, otherwise how could I do object-oriented programming. And then you have a baby right after you get married. What if the partner runs away? A new one? If creation and destruction are expensive, it is better to have a child and continue to hold a reference to the object.

Why do some people talk for a long time when they open their mouths, while some people talk only once in a while? According to my observation, two people who work almost equally well will develop better in the future. Let’s feel the reasons from specific examples.

When chatting with friends, really, Renren, which came out a few years ago, always has a bit of a technical geek spirit. When we chat, we talk about technology. People ask me how your videos are stored and played. I said that I only work on content and meta, and the rest has nothing to do with me. Tian'er chatted to death, and his pattern fell into place. If there is a development platform for what I do, it includes uploading videos. First call the cloud storage interface for initialization, and they return us a video media upload URL. The JS side uploads media fragments to the URL. If the network is interrupted or the browser is closed or something, you can call the resume upload interface to continue uploading using the newly returned URL. The resume transfer interface carries the total file size and the size of the files that have been received so far. JS can use this to determine which fragment to continue the transfer from. Cloud storage is in another department. They are responsible for communicating with the cloud transcoding department. Cloud transcoding converts media into various formats. As for converting original high-definition files into various bit rates, how is sampling done, and DRM digital rights management is How to do it is the responsibility of the cloud transcoding department. What strategies do they use internally to distribute it to various DNS nodes? How the scheduling department schedules to save the most precious bandwidth of the video website, I am not very clear about the specific details. The cloud transcoding department passes the converted bit rates and video URLs to us in the form of MQ, and we store them in the database.

Then they asked again, what do you use for MQ? I'm talking about apache's qpidd. Um~~, if people don’t know, the conversation will be boring. So it must be said that MQ is similar, and like rabbit mq, it is based on the AMQP advanced message queue protocol. This is the company's unified cluster, and it is said to be very convenient to install and deploy. Mainstream programming languages ​​also support it, so I use it. Because it is mainly cross-department communication, it is mainly for convenience and saving communication costs, so our message body is json first compressed and then base64. We also don’t use the binary ones of protobuf, because if we encounter a problem, the binary is poorly readable, lacks self-description, and is not easy to troubleshoot.

High-concurrency services must have some emergency plans, such as service interruption, downgrade, isolation, current limiting, asynchronous RPC, etc. For service interruption, downgrade, and isolation, everyone prefers to use Netflix’s open source distributed service elasticity framework Hystrix. Hystrix can also limit traffic. But our service uses guava's RateLimiter, a mature token bucket algorithm, to implement it.

Service current limiting is a very simple matter. Our code only has a few hundred lines, but it contains a relatively complete set of design ideas. The purpose is to implement fine-grained business current limiting based on certain strategies (such as url, platform source, url + platform source).

 

All requests must go through this interceptor. A single current limit holder is defined in this interceptor. This current limit holder is configured according to the configuration. A map composed of the policy and the configured limit for each or each request is returned to the interceptor requesting the corresponding key and RateLimiter. If the interceptor determines that the limit is exceeded, an error will be returned directly without being handed over to the controller for processing. A request type, such as url, a RateLimiter for fine-grained rate limiting.

Of course, in addition to this application-level current limitation, some restrictions on IP session space, request frequency, and concurrency can also be implemented at the nginx level. If you encounter a network attack, try to solve the problem from the operation and maintenance level first, because the higher the level, the impact on services can be minimized.

A good software architecture can meet the quality of the system, enable beneficiaries to achieve consistent goals, support the planning process, guide system development, effectively manage complexity, and lay the foundation for reuse. The foundation can reduce maintenance costs and support conflict analysis.

Most architectures or programming languages ​​come from projects. For example, Stroustrup, the inventor of C++, originally designed this language because he saw that C language caused critical programming problems due to unreasonable initialization parameters. Such bugs are difficult to find. This problem also occurs during cleaning. If you do it and persist, you will indeed succeed. However, everything has a stage of formation and development. Java has been complained about performance issues in older versions, and every version of Java is accompanied by performance improvements, so upgrading the JVM can bring free performance benefits. The final keyword comes to mind when it comes to details. In early versions, the part of the final keyword would be called inline, directly expanding the function without the need for constant pushing and popping of parameters into and out of the stack, which would cause performance overhead. But this will cause a relatively large space overhead when the function body is large. The JVM has been optimized since 1.5, and the final keyword is no longer so important in performance. It turns out that there is a colleague in the company who is very nice and has great ideas. He said: "I always record some of my ideas in a notebook, and then when I look at it after a while, I will find that I only insisted on one of the ideas at the time, did it, and it was successful." I think he is further away from success than he thinks. Because all he had was an idea, but he didn't do it. It seems that there is only the idea of ​​​​JDK1.0, but the distance from success is at least jdk1.5.

Python is famous for its small code size, low maintenance cost, and high programming efficiency. But how many programming languages ​​are not optimized for low maintenance costs and high programming efficiency? So people asked me that search engines are already in flames. Can you really create your own advantages in the future? All I can say is how will you know if you don’t try. "Life is short, I use python". These features of Python can free up more time to pick up girls, but life is short. The advertising words of Python authors give Python vitality. In fact, the simplicity of Python can be seen from its memory recycling. It uses reference counting, so there is no circular reference problem. I did a python project when I was at Renren. There was a time when our leader said that I did the work of eight people by myself. In addition to all the maintenance work on the entire website, I take on all kinds of new jobs. Because of this personality, others really have no way to come to me. I only embarrass myself, not others. At that time, I had been working for less than four years and had been programming for less than two years. I said that I worked as a Japanese translator for the first two years of my work. The reason why we can go to everyone. I just came to Beijing one day, and I was visiting the Summer Palace with my senior. Suddenly I received an interview call from Renren.com. The person on the phone asked me various technical questions, and my answers were all "No." The other end was very nice and said it didn't matter. Finally, there was an interviewer on the other end of the phone, who spoke to me in Japanese and asked me what I had done. She was very satisfied with my answer. She was mainly satisfied because she found that my Japanese was very good. As a result, I became a bridge engineer at Renren.com. I remember that in the article I wrote earlier, in my personal profile, I said that I was criticized by netizens for my language talent. But when I was at Neusoft, everyone said that I had language talent, and I was used to thinking so. I just took it for granted. I am stating something, and I don’t mean to advertise it. I don’t know Python either, and I don’t even know what an open platform is. But I took over the maintenance of the entire open platform by myself because the boss of the open platform left for Meituan. By the way, this boss is really a great guy. He came from Tsinghua University. He started a business, came to Renren, went to Meituan and became P4, and now he is starting his own business. One day, my boyfriend showed me a photo from the Tsinghua Alumni Association and asked me, "Is this person a former colleague of yours?" I said, "Yeah." He said: "The person sitting next to him is our boss." Well, it seems that my male idol has a lot of room for improvement.

I bite the bullet and maintain this open platform. Then the Bubble Fish game will be connected to a Japanese platform. This game is written in python. At that time, this game was very popular. The game company was very busy and had no time to connect it, so they paid us for help. We can only take the code and connect it ourselves. At that time, Renren liked to engage in internal entrepreneurship. We were an overseas business department and we were not making money. I made the connection, and the game party gave us a 100,000 connection fee, and the rest was the game share. I don’t know how much the income was. But this was the only profitable project for us at that time. Python is really easy to learn. I maintain the website during the day, and everyone comes to me. At night, I do the access, study python and access documents, and finish the payment access part in one week. The test environment can be charged. But there was a problem going online. When running the formal environment built by the operation and maintenance MM, something was wrong. Everyone went home in the evening, and I worked on the online environment there by myself. Later, I finally discovered that the version of one part of the installed tool was wrong, but I can’t remember the details. That happened 6 years ago. So I have done python, but I don’t know python.

There is a high wall between Java and C++, which is surrounded by dynamic memory allocation and garbage collection technology. People outside the wall want to enter, but people inside the wall want to get out. You can't be so casual in Java, that is, optimize the memory allocation parameters. Speaking of JVM parameter optimization, in fact, the most commonly used thing that everyone knows and doesn't take seriously is to set the initial maximum and minimum values ​​of the heap to the same value, so as to avoid heap Automatic expansion, adjusting the size of the new generation and the old generation of full gc caused by throughput reduction and delay. It is said that almost all gc operations of the JVM, including minor gc, must stop the world.

Finally, I would like to recommend a foreign website to everyone. Practical tools and tuning techniques are often introduced, focusing on analysis. Representative works include and

The above is the detailed content of The road of Java architect--current limiting technology and various programming languages. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
视频号直播不推流的原因是什么?被限流如何解决?视频号直播不推流的原因是什么?被限流如何解决?Mar 07, 2024 pm 02:04 PM

开头:随着社交媒体的快速发展,视频直播成为了人们分享生活、传递信息的重要方式之一。然而,有时候我们在使用视频号直播功能时可能会遇到无法推流的情况,那么这是什么原因造成的呢?一、视频号直播不推流的原因是什么?网络问题是视频号直播不推流的主要原因之一,尤其是网络连接不稳定。当网络信号不稳定时,视频流无法顺利传输到服务器,导致直播无法正常推流。网络连接的不稳定性可能会导致直播画面卡顿、断流或者延迟,影响用户的观看体验。因此,稳定的网络连接对于视频直播的顺畅进行至关重要。要解决这个问题,可以尝试改善网络

抖音限流了怎么养号?它养号需要哪些技巧?抖音限流了怎么养号?它养号需要哪些技巧?Mar 21, 2024 pm 09:10 PM

抖音作为全球最受欢迎的短视频平台之一,吸引了无数用户在此分享自己的生活、才艺和创意。随着用户数量的增加,抖音上的竞争也越来越激烈。一些用户可能会遇到抖音限流的问题,导致自己的视频播放量、点赞量和粉丝增长受到影响。本文将探讨抖音限流后如何养号,以及抖音养号需要掌握的技巧。一、抖音限流了怎么养号?如果你发现自己的抖音账号被限流了,可以采取以下措施来养号:审查视频内容:仔细检查最近发布的视频,确保符合抖音的推荐标准。如发现任何违规、低俗或重复内容,要立即删除。2.提高内容质量:在创作视频时,注重内容质

抖音直播带货没流量怎么办?直播间被限流的原因抖音直播带货没流量怎么办?直播间被限流的原因Mar 27, 2024 pm 10:51 PM

随着互联网的发展,直播带货成为了电商行业的一种新型营销方式。而在诸多直播平台中,抖音直播因其庞大的用户群体和强大的社交传播效应而备受关注。然而,在进行抖音直播带货时,有些主播却面临着一个尴尬的问题:直播间没有流量,商品无人问津。那么,当抖音直播带货没有流量时,我们该如何解决这个问题呢?一、抖音直播带货没流量怎么办?提升内容质量:直播间的内容是吸引用户的关键。主播可以从产品介绍、品牌故事、互动环节等方面入手,提升直播内容的质量和吸引力,使用户产生购买欲望。为了吸引更多受众并满足其需求与兴趣,通过直

不能投抖加等于被限流吗?不能投抖加的作品怎么处理?不能投抖加等于被限流吗?不能投抖加的作品怎么处理?Mar 21, 2024 pm 09:47 PM

在抖音这个日活跃用户超过亿万的短视频平台上,越来越多的内容创作者希望通过投抖加来提升作品的曝光度和影响力。也有一些人发现,自己的作品即使没有投抖加,也似乎被限流了。那么,不能投抖加真的等于被限流吗?本文将围绕这一问题展开探讨,并给出应对策略。一、不能投抖加等于被限流吗?首先,我们需要明确一个概念,即“限流”。在抖音平台上,限流是指平台通过调整算法控制内容的曝光度,从而降低某些内容被展示给用户的频率。限流并非意味着内容会被完全屏蔽,而是减少了它们在用户视野中出现的机会。不使用抖加并不直接导致限流。

SOA中的软件架构设计及软硬件解耦方法论SOA中的软件架构设计及软硬件解耦方法论Apr 08, 2023 pm 11:21 PM

​对于下一代集中式电子电器架构而言,采用central+zonal 中央计算单元与区域控制器布局已经成为各主机厂或者tier1玩家的必争选项,关于中央计算单元的架构方式,有三种方式:分离SOC、硬件隔离、软件虚拟化。集中式中央计算单元将整合自动驾驶,智能座舱和车辆控制三大域的核心业务功能,标准化的区域控制器主要有三个职责:电力分配、数据服务、区域网关。因此,中央计算单元将会集成一个高吞吐量的以太网交换机。随着整车集成化的程度越来越高,越来越多ECU的功能将会慢慢的被吸收到区域控制器当中。而平台化

新视角图像生成:讨论基于NeRF的泛化方法新视角图像生成:讨论基于NeRF的泛化方法Apr 09, 2023 pm 05:31 PM

新视角图像生成(NVS)是计算机视觉的一个应用领域,在1998年SuperBowl的比赛,CMU的RI曾展示过给定多摄像头立体视觉(MVS)的NVS,当时这个技术曾转让给美国一家体育电视台,但最终没有商业化;英国BBC广播公司为此做过研发投入,但是没有真正产品化。在基于图像渲染(IBR)领域,NVS应用有一个分支,即基于深度图像的渲染(DBIR)。另外,在2010年曾很火的3D TV,也是需要从单目视频中得到双目立体,但是由于技术的不成熟,最终没有流行起来。当时基于机器学习的方法已经开始研究,比

多无人机协同3D打印盖房子,研究登上Nature封面多无人机协同3D打印盖房子,研究登上Nature封面Apr 09, 2023 am 11:51 AM

我们经常可以看到蜜蜂、蚂蚁等各种动物忙碌地筑巢。经过自然选择,它们的工作效率高到叹为观止这些动物的分工合作能力已经「传给」了无人机,来自英国帝国理工学院的一项研究向我们展示了未来的方向,就像这样:无人机 3D 打灰:本周三,这一研究成果登上了《自然》封面。论文地址:https://www.nature.com/articles/s41586-022-04988-4为了展示无人机的能力,研究人员使用泡沫和一种特殊的轻质水泥材料,建造了高度从 0.18 米到 2.05 米不等的结构。与预想的原始蓝图

抖音限流怎么恢复流量数据?它被限流后,有没有其他方法可以加快账号恢复的速度?抖音限流怎么恢复流量数据?它被限流后,有没有其他方法可以加快账号恢复的速度?Apr 01, 2024 pm 12:21 PM

抖音作为全球最受欢迎的短视频平台之一,拥有庞大的用户群体和内容创作者。一些用户可能会遇到抖音账号被限流的问题,导致流量数据下降。那么,抖音限流怎么恢复流量数据呢?本文将详细介绍抖音限流后如何恢复流量数据,以及有没有其他方法可以加快账号恢复的速度。一、抖音限流怎么恢复流量数据?首先,需要分析原因:账号被限流的原因可能是因为违反了平台规定、内容质量不佳或者异常行为等。了解原因后,可以针对性地进行改进。优化内容:提升内容质量和创意,确保内容符合抖音的用户喜好和平台规定。可以尝试发布多样化的内容,寻找用

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.