This article explains how Guids are generated.
My question is that is there any way to find out which machine in my web farm generated this Guid and when?
|
This article explains how Guids are generated. My question is that is there any way to find out which machine in my web farm generated this Guid and when? |
||||
|
|
Neil Fenwick is correct. However we can use the structure to our advantage. Version 4 (.Net) Version 4 UUIDs use a scheme relying only on random numbers. This algorithm sets the version number as well as two reserved bits. All other bits are set using a random or pseudorandom data source. Version 4 UUIDs have the form xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx where x is any hexadecimal digit and y is one of 8, 9, A, or B. e.g. f47ac10b-58cc-4372-a567-0e02b2c3d479. Use the Version Field We are free to change the first nibble of byte 8; so if you have less than 17 machines you can identify them by altering the GUIDs created on each one.
Use the Version Field and 'y' I am not sure if changing Y will alter the uniqueness of the GUID, so your mileage may vary. If you have less than 17 machines stick with the first solution.
Use the Version and 'y' (Redux) You can still retain the value in 'y' by limiting the amount of machines to 63 (using the last 2 bits to represent the 4 possible values of 'y'):
Use Version 1 GUIDs You could also use version 1 GUIDs, as it's still possible to generate them:
|
|||||||
|
|
In some cases it is possible to determine the machine that generated a GUID, based on its MAC address. It depends on the algorithm that was used to encode the Guid. Wikipedia's article on GUID's mentions that the MAC address could be extracted from early GUIDs. You tagged your question with ".net", so I looked into the .NET implementation. Its hard to find conclusive documentation on the algorithm used by There's also some discussion on the .NET implementation in this SO question Quote from Raymond Chen's page that you referenced and is also referenced in the answer to that question: "The last 48 bits are the unique address of the computer's network card." But that relates to a Version 1 GUID, whereas .NET appears to use Version 4 I generated a bunch of GUIDs using So in summary, it does not appear that you'll be able to trace them to a specific machine. |
||||
|
|