You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1025 is merged with aim to catch disk I/O error. However, comparing error message with IO_ERROR_STR defined in StoreException is not a good way because error message could be null for IOException. Following is two examples from server log:
2019/05/04 00:11:34.476 ERROR [DiskManager] [store-startup-Partition[165]] [ambry-server] [] Exception while starting store for the partitionPartition[165]
com.github.ambry.store.StoreException: Error while starting store for dir /mnt/u010/ambrydata/165
at com.github.ambry.store.BlobStore.start(BlobStore.java:233)
at com.github.ambry.store.DiskManager.lambda$start$17(DiskManager.java:125)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException
at com.github.ambry.store.LogSegment.<init>(LogSegment.java:139)
at com.github.ambry.store.Log.getSegmentsToLoad(Log.java:342)
at com.github.ambry.store.Log.<init>(Log.java:78)
at com.github.ambry.store.BlobStore.start(BlobStore.java:209)
... 2 more
We should first address NPE problem in this case and then figure out a good way to determine if IOException is related to Disk issue.
The text was updated successfully, but these errors were encountered:
#1025 is merged with aim to catch disk I/O error. However, comparing error message with
IO_ERROR_STR
defined inStoreException
is not a good way because error message could be null for IOException. Following is two examples from server log:We should first address NPE problem in this case and then figure out a good way to determine if IOException is related to Disk issue.
The text was updated successfully, but these errors were encountered: