Notice: unserialize(): Unexpected end of serialized data in Magento 2 data migration
Just follow the following step.
Go to /yii/caching/CCache.php file and replace with following code.
$value=unserialize($value);
Change to :
$value=unserialize(base64_decode($value));
It will work fine. hope so