xianjingfeng

Results 78 comments of xianjingfeng

> > I found shuffleMetaMap in LocalStorageMeta is useless, maybe we should remove it. And then we can remove LocalStorageMeta at the same time. > > If LocalStageMeta is removed,...

> > shuffleMetaMap is useless, right? > > I don't think ShuffleMetaMap is useless. I believe its intention is to track every shuffleId's shuffle size and last read time. It...

> Can we close this? @xianjingfeng I don't think it can be closed.The problem still exists, we just don't use this variable anymore.

As we discussed in #80, should we update conf by REST api?

> We need to guarantee the order of data, otherwise we will lose the data. Get it. This feature will not support `slow start`. I'm going to make it an...

@EnricoMi @jerqi @zuston Should we wait for #1751

> Let's not wait with the release for more features. There will always be new features. We should rather release more frequently. But it is not a feature. Version 0.8...

Could we temporarily handle it in the following way? ```java public static void releaseByteBuffer(ByteBuffer byteBuffer) { if (byteBuffer == null || !byteBuffer.isDirect()) { return; } try { PlatformDependent.freeDirectBuffer(byteBuffer); } catch...