linkedin工程师是如何优化他们的java代码的-亚博电竞手机版
最近在刷各大公司的技术博客的时候,我在linkedin的技术博客上面发现了一篇很不错博文。这篇博文介绍了linkedin信息流中间层feed mixer,它为linkedin的web亚博vip888主页,大学亚博vip888主页,公司亚博vip888主页以及客户端等多个分发渠道提供支撑(如下图所示)。
在feed mixer里面用到了一个叫做spr(念“super”)的库。博文讲的就是如何优化spr的java代码。下面就是他们总结的优化经验。
1. 谨慎对待java的循环遍历
java中的列表遍历可比它看起来要麻烦多了。就以下面两段代码为例:
a:
private final list_bars; for(bar bar : _bars) { //do important stuff }
b:
private final list_bars; for(int i = 0; i < _bars.size(); i ) { bar bar = _bars.get(i); //do important stuff }
代码a执行的时候 会为这个抽象列表创建一个迭代器,而代码b就直接使用 get(i)
来获取元素,相对于代码a省去了迭代器的开销。
实际上这里还是需要一些权衡的。代码a使用了迭代器,保证了在获取元素的时候的时间复杂度是 o(1) (使用了 getnext()
和 hasnext()
方法),最终的时间复杂度为 o(n) 。但是对于代码b,循环里每次在调用 _bars.get(i)
的时候花费的时间复杂度为 o(n) (假设这个list为一个 linkedlist),那么最终代码b整个循环的时间复杂度就是 o(n^2) (但如果代码b里面的list是 arraylist,
那 get(i)
方法的时间复杂度就是 o(1)了)。
所以在决定使用哪一种遍历的方式的时候,我们需要考虑列表的底层实现,列表的平均长度以及所使用的内存。最后因为我们需要优化内存,再加上 arraylist
在大多数情况下查找的时间复杂度为 o(1) ,最后决定选择代码b所使用的方法。
2.在初始化的时候预估集合的大小
从java的这篇 文档我们可以了解到: “一个hashmap 实例有两个影响它性能的因素:初始大小和加载因子(load factor)。 […] 当哈希表的大小达到初始大小和加载因子的乘积的时候,哈希表会进行 rehash操作 […] 如果在一个hashmap 实例里面要存储多个映射关系时,我们需要设置足够大的初始化大小以便更有效地存储映射关系而不是让哈希表自动增长让后rehash,造成性能瓶颈。”
在linkedin实践的时候,常常碰到需要遍历一个 arraylist
并将这些元素保存到 hashmap
里面去。将这个 hashmap
初始化预期的大小可以避免再次哈希所带来的开销。初始化大小可以设置为输入的数组大小除以默认加载因子的结果值(这里取0.7):
优化前的代码:
hashmap_map; void addobjects(list input) { _map = new hashmap (); for(foo f: input) { _map.put(f.getid(), f); } }
优化后的代码
hashmap_map; void addobjects(list input) { _map = new hashmap ((int)math.ceil(input.size() / 0.7)); for(foo f: input) { _map.put(f.getid(), f); } }
3. 延迟表达式的计算
在java中,所有的方法参数会在方法调用之前,只要有方法参数是一个表达式的都会先这个表达式进行计算(从左到右)。这个规则会导致一些不必要的操作。考虑到下面一个场景:使用comparisonchain
比较两个 foo
对象。使用这样的比较链条的一个好处就是在比较的过程中只要一个 compareto 方法返回了一个非零值整个比较就结束了,避免了许多无谓的比较。例如现在这个场景中的要比较的对象最先考虑他们的score, 然后是 position, 最后就是 _bar
这个属性了:
public class foo { private float _score; private int _position; private bar _bar; public int compareto (foo other) { return comparisonchain.start(). compare(_score, other.getscore()). compare(_position, other.getposition()). compare(_bar.tostring(), other.getbar().tostring()). result; } }
但是上面这种实现方式总是会先生成两个 string
对象来保存 bar.tostring()
和other.getbar().tostring()
的值,即使这两个字符串的比较可能不需要。避免这样的开销,可以为bar 对象实现一个 comparator:
public class foo { private float _score; private int _position; private bar _bar; private final barcomparator bar_comparator = new barcomparator(); public int compareto (foo other) { return comparisonchain.start(). compare(_score, other.getscore()). compare(_position, other.getposition()). compare(_bar, other.getbar(), bar_comparator). result(); } private static class barcomparator implements comparator{ @override public int compare(bar a, bar b) { return a.tostring().compareto(b.tostring()); } } }
4. 提前编译正则表达式
字符串的操作在java中算是开销比较大的操作。还好java提供了一些工具让正则表达式尽可能地高效。动态的正则表达式在实践中比较少见。在接下来要举的例子中,每次调用 string.replaceall()
都包含了一个常量模式应用到输入值中去。因此我们预先编译这个模式可以节省cpu和内存的开销。
优化前:
private string transform(string term) { return outputterm = term.replaceall(_regex, _replacement); }
优化后:
private final pattern _pattern = pattern.compile(_regex); private string transform(string term) { string outputterm = _pattern.matcher(term).replaceall(_replacement); }
5. 尽可能地缓存cache it if you can
将结果保存在缓存里也是一个避免过多开销的方法。但缓存只适用于在相同数据集撒花姑娘吗的相同数据操作(比如对一些配置的预处理或者一些字符串处理)。现在已经有多种lru(least recently used )缓存算法实现,但是linkedin使用的是 guava cache (具体原因见这里) 大致代码如下:
private final int max_entries = 1000; private final loadingcache_cache; // initializing the cache _cache = cachebuilder.newbuilder().maximumsize(max_entries).build(new cacheloader () { @override public string load(string key) throws exception { return expensiveoperationon(key); } } ); //using the cache string output = _cache.getunchecked(input);
6. string的intern方法有用,但是也有危险
string 的 intern 特性有时候可以代替缓存来使用。
从这篇文档,我们可以知道:
“a pool of strings, initially empty, is maintained privately by the class string. when the intern method is invoked, if the pool already contains a string equal to this string object as determined by the equals(object) method, then the string from the pool is returned. otherwise, this string object is added to the pool and a reference to this string object is returned”.
这个特性跟缓存很类似,但有一个限制,你不能设置最多可容纳的元素数目。因此,如果这些intern的字符串没有限制(比如字符串代表着一些唯一的id),那么它会让内存占用飞速增长。linkedin曾经在这上面栽过跟头——当时是对一些键值使用intern方法,线下模拟的时候一切正常,但一旦部署上线,系统的内存占用一下就升上去了(因为大量唯一的字符串被intern了)。所以最后linkedin选择使用 lru 缓存,这样可以限制最大元素数目。
最终结果
spr的内存占用减少了75%,进而将feed-mixer的内存占用减少了 50% (如下图所示)。这些优化减少了对象的生成,进而减少了gc得频率,整个服务的延迟就减少了25%。