image Multicast issue
-
Hi,
i got some issue with Multicast image, had this issue for sometime, now im running the latest 1.5.10.1815 and still got this issue.
If i create a multicast image task , by going to image menu then clicking Multicast image, and creating a multicast session. It works, but then if i want to do an other session , when i click on start, it just reset the fields to default value (session name, count, timeout, image ) but the multicast session is not created.
if i reboot the server i still cannot create a multicast image session anymore.
i noticed that if i run the database maintenance queries :
DELETE FROMhostsWHEREhostID= ‘0’;
DELETE FROMhostMACWHERE hmID = ‘0’ ORhmHostID= ‘0’;
DELETE FROMgroupMembersWHEREgmID= ‘0’ ORgmHostID= ‘0’ ORgmGroupID= ‘0’;
DELETE FROMsnapinGroupAssocWHEREsgaID= ‘0’ ORsgaSnapinID= ‘0’ ORsgaStorageGroupID= ‘0’;
DELETE fromsnapinAssocWHEREsaID= ‘0’ ORsaHostID= ‘0’ ORsaSnapinID= ‘0’;
DELETE FROMhostsWHEREhostIDNOT IN (SELECThmHostIDFROMhostMACWHEREhmPrimary= ‘1’);
DELETE FROMhostsWHEREhostIDNOT IN (SELECThmHostIDFROMhostMAC);
DELETE FROMhostMACWHEREhmhostIDNOT IN (SELECThostIDFROMhosts);
DELETE FROMsnapinAssocWHEREsaHostIDNOT IN (SELECThostIDFROMhosts);
DELETE FROMgroupMembersWHEREgmHostIDNOT IN (SELECThostIDFROMhosts);
DELETE FROMtasksWHEREtaskStateIDIN (“1”,“2”,“3”);
DELETE FROMsnapinTasksWHEREstStatein (“1”,“2”,“3”);
TRUNCATE TABLE multicastSessions;
TRUNCATE TABLE multicastSessionsAssoc;
DELETE FROM tasks WHERE taskTypeId=8;then i can create a task again.
Is there anything to fix this behavior?
-
@boombasstic Can you check DB with:
SELECT * FROM HISTORY;after your entry?When I test in 1824, I’m not seeing the problem. So it’s possible a future set of updates fixed the problem you’re specifically looking at.
When a MC task cancels (or completes) the session name is expected to be cleared out because you may need to reuse the session name down the road.
I’m seeing the clients and time are being set correctly.
Maybe I’m not understanding what exactly you’re doing?
Similarly, I started 2 multicast sessions for the exact same image, and I’m unable to replicate what you’re seeing.
i also cancelled one then started a new session and that worked.
To be fair (like I said) I’m on 1824 so maybe we unknowingly fixed the problem you’re hitting right now?
-
ok i ll wait for 1824.
It’s not a big issue, i can either multicast by doing a quick registration on my devices , grouping them and doing a group multicast. that works everytime. or just run the queries, and that seem to flush whatever it is that is blocking the multicast.Thanks!
-
@boombasstic You’re able to test this on your own already:
Change your branch from stable -> dev-branch
cd /path/to/installer git checkout dev-branch git pull cd bin sudo ./installfog.sh -yThis will install whatever is “bleeding edge” on the development (which eventually roll up into the stable automatically on the 15th of each month).