You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(24) |
Nov
(5) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(14) |
Feb
(8) |
Mar
(6) |
Apr
(7) |
May
(1) |
Jun
(22) |
Jul
(6) |
Aug
(22) |
Sep
(22) |
Oct
(8) |
Nov
(10) |
Dec
(31) |
2009 |
Jan
(18) |
Feb
(29) |
Mar
(25) |
Apr
(11) |
May
(6) |
Jun
(7) |
Jul
(8) |
Aug
|
Sep
(3) |
Oct
(20) |
Nov
(11) |
Dec
(1) |
2010 |
Jan
(15) |
Feb
(33) |
Mar
(20) |
Apr
(13) |
May
(1) |
Jun
(4) |
Jul
(7) |
Aug
(11) |
Sep
(5) |
Oct
(6) |
Nov
(7) |
Dec
(12) |
2011 |
Jan
(6) |
Feb
(7) |
Mar
(1) |
Apr
(7) |
May
|
Jun
(10) |
Jul
(2) |
Aug
(2) |
Sep
(4) |
Oct
(3) |
Nov
(4) |
Dec
(1) |
2012 |
Jan
(3) |
Feb
(5) |
Mar
(15) |
Apr
(3) |
May
(2) |
Jun
(5) |
Jul
(5) |
Aug
(7) |
Sep
|
Oct
(2) |
Nov
(3) |
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
(4) |
Apr
(14) |
May
(8) |
Jun
(4) |
Jul
(3) |
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2014 |
Jan
(2) |
Feb
(1) |
Mar
(6) |
Apr
(2) |
May
(1) |
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
(3) |
Nov
(3) |
Dec
(2) |
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Ronnie F. <ron...@gm...> - 2011-10-20 20:02:07
|
Hi, I am interested in designing a pre-emptive scheduler, or some way to handle interrupts. What is the best way to accomplish this using GridSim? Are there any tutorials / examples, or any other sources I could use as a reference to handling this problem? Thanks, Ronnie |
From: Jyoti P. <jyo...@gm...> - 2011-10-18 05:23:43
|
How to build a scheduler using gridsim. The scheduler implements FCFS policy. -- Jyoti Prakash Undergraduate Final Year, Department of Information Technology, VSSUT Burla Odisha |
From: Ronnie F. <ron...@gm...> - 2011-09-29 15:16:35
|
Hi, I am new to GridSim, and trying to run through the examples. I am able to compile the Example01.java, and I see a file Example01.class appear in the directory. However when I try to run Example01 I get en error message. I read the FAQ page that talks about my error, but I am still not able to run. I have tried multiple things, but still no luck. Please help. There is some ambiguity on the site about how to run the file: On the FAQ page it says: * to run type: java -cp %GRIDSIM%\jars\gridsim.jar;. gridsim.example01.Example1 On the Readme file it says: In Windows: java -cp %GRIDSIM%\jars\gridsim.jar;. gridsim\example01\Example1 I have tried both versions but I am still getting the error. %GRIDSIM% for me = C:\eclipse\GridSim What I have tried is: C:\Program Files\Java\jdk1.6.0_21\bin>javac -cp C:\eclipse\GridSim\jars\gridsim. jar;. C:\eclipse\GridSim\examples\gridsim\example01\Example1.java C:\Program Files\Java\jdk1.6.0_21\bin>java -cp C:\eclipse\GridSim\jars\gridsim.j ar;. C:\eclipse\GridSim\examples\gridsim\example01\Example1 I have also tried: C:\Program Files\Java\jdk1.6.0_21\bin>java -cp C:\eclipse\GridSim\jars\gridsim.j ar;. C:\eclipse\GridSim\examples\gridsim\example01\gridsim.example01.Example1 This is the directory that Example01.class is stored: C:\eclipse\GridSim\examples\gridsim\example01 And the following is the error message I receive: Exception in thread "main" java.lang.NoClassDefFoundError: C:\eclipse\GridSim\ex amples\gridsim\example01\Example1 Caused by: java.lang.ClassNotFoundException: C:\eclipse\GridSim\examples\gridsim \example01\Example1 at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:248) Could not find the main class: C:\eclipse\GridSim\examples\gridsim\example01\Exa mple1. Program will exit. I have tried many things, but am unsure why it is not running. If you could walk me through where I am going wrong it would be greatly appreciated. Thanks, Ronnie Farrell |
From: Aminul H. <ami...@mo...> - 2011-09-26 03:11:18
|
Dear users, Would you mind please let me know that is it possible to create some additional resources/users after some period a simulation has been started in GridSim. It has to be during a single simulation, so GridSim will initialise (GridSim.init()) only once and also simulation will be initiated (StartGridSimulation()) only once. The additional resources will then be added with the existing resources. Waiting to hearing from you..? -- With Sincerity *----* Aminul Haque * * ** |
From: Jyoti P. <jyo...@gm...> - 2011-09-26 01:45:58
|
What is the way to simulate Value Function Algorithm in Gird Sim ? The algorithm is as follows 1. for all nodes calculate value function given by V = W1*CPU-usage + w2*memory-usage + w3*network-usage 2. sort the value function and allocate the tasks to the corresponding nodes -- Jyoti Prakash Undergraduate Final Year, Department of Information Technology, VSSUT Burla Odisha |
From: Jyoti P. <jyo...@gm...> - 2011-09-09 04:58:59
|
Any help on simulation of Load Balancing Algorithm in a grid..... I cant find the way out -- Jyoti Prakash Undergraduate Final Year, Department of Information Technology, VSSUT Burla Odisha |
From: Jyoti P. <jyo...@gm...> - 2011-08-24 13:41:00
|
Can somebody suggest me a way to simulate a load balancing algorithm for grid. -- Jyoti Prakash Final Year Undergraduate, IT VSSUT, Burla |
From: Mayuri M. <may...@gm...> - 2011-08-09 06:41:52
|
Dear Gridsim users, I am using example 2 of network folder to implement dynamic load balancing algorithm. While modifying the body () method of NetUer2 and executing the code, everytime it is generating different output. I mean to say, code of the body( ) mothod is not executed sequencially. Then i do not understand that from where this body() method is controlled??? Please tell me that from where it is controlled?? -- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. |
From: Elham T. <elh...@gm...> - 2011-07-05 13:54:35
|
Dear all I have a problem in running my program with gridsim. I try to run one of Gridsim parallel example that schedule with conservative back fill algorithm. in the ConservativeBackfill class there is a function that name is compressSchedule. but it does not use in real program of ConservativeBackfill, then I want to use it. I use actual finish time and expected finish time, then when the job finish I call compressSchedule function to compress jobs in queue but in run time, program has an error that is : Exception in thread "Res_0_Conservative" java.lang.StackOverflowError at java.util.ArrayList.get(ArrayList.java:322) at gridsim.parallel.profile.PERangeList.quickSort(PERangeList.java:396) at gridsim.parallel.profile.PERangeList.quickSort(PERangeList.java:413) at gridsim.parallel.profile.PERangeList.quickSort(PERangeList.java:413) at gridsim.parallel.profile.PERangeList.quickSort(PERangeList.java:413) I really dont know what should I do and it takes lots of my time. I will appreciate if you kindly help me. -- -- Regards Elham Taghizadeh |
From: vinaya c. <vin...@gm...> - 2011-06-26 03:18:37
|
hello I am trying to execute network/example03 with few modifications i.e., i am reading number of resources for each user as input from console and trying to run the gridsimsimulation. But i am getting the following error: Starting GridSim version 5.0 Entities started. Output_User_0: background traffic will start at time 14 Output_User_1: background traffic will start at time 18 Exception in thread "Res_0" java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.ArrayList.get(ArrayList.java:324) at eduni.simjava.Sim_system.send(Sim_system.java:616) at eduni.simjava.Sim_entity.sim_schedule(Sim_entity.java:373) at gridsim.GridSimCore.send(Unknown Source) at gridsim.GridResource.body(Unknown Source) at eduni.simjava.Sim_entity.run(Sim_entity.java:605) Any help in this regard is highly appreciated. Thanks, Vinaya |
From: vinaya c. <vin...@gm...> - 2011-06-17 09:24:13
|
hello I am doing a project related to attribute based access control in grid environment. can any one help me how to define the access permissions for the grid resources. thanks and regards Vinaya |
From: vinaya c. <vin...@gm...> - 2011-06-14 10:14:34
|
hello sir I am doing my M.tech project on grid environment. I want to gridsim for my project. I am facing the problem in executing the examples in grid sim I am using Jdk1.6 and gridsim5.2 and working on windows XP I have set the path variable to \jdk\bin path and also set the classpath variable to \jars\gridsim.jar I am getting the below errors when i am trying to execute the Example1.java *C:\Program Files\GridSim\examples>java -cp %GridSim%\jars\gridsim.jar gridsim.example01.Example1 Starting example of how to create one Grid resource Initializing GridSim package Exception in thread "main" java.lang.NoClassDefFoundError: gridsim/GridSim at gridsim.example01.Example1.main<Example1.java:60> *please help me out Thanks and regards Vinaya.c |
From: vinaya c. <vin...@gm...> - 2011-06-14 07:25:49
|
hello sir I am facing the problem in executing the examples in grid sim I am using Jdk1.5 and gridsim5.2 and working on windows XP I have set the path variable to \jdk\bin path and also set the classpath variable to \jars\gridsim.jar I am getting the below errors when i am trying to compile the Example1.java *C:\Program Files\GridSim\examples\gridsim>javac -cp %GridSim%\ xample01\Example1.java example01\Example1.java:93: cannot find symbol symbol : class GridResource location: class gridsim.example01.Example1 public static GridResource createGridResource() ^ example01\Example1.java:60: cannot find symbol symbol : variable GridSim location: class gridsim.example01.Example1 GridSim.init(num_user, calendar, trace_flag, exclu ^ example01\Example1.java:69: cannot find symbol symbol : class GridResource location: class gridsim.example01.Example1 GridResource gridResource = createGridResource(); ^ example01\Example1.java:101: cannot find symbol symbol : class MachineList location: class gridsim.example01.Example1 MachineList mList = new MachineList(); ^ example01\Example1.java:101: cannot find symbol symbol : class MachineList location: class gridsim.example01.Example1 MachineList mList = new MachineList(); ^ example01\Example1.java:111: cannot find symbol symbol : class Machine location: class gridsim.example01.Example1 mList.add( new Machine(0, 4, mipsRating)); // First ^ example01\Example1.java:120: cannot find symbol symbol : class Machine location: class gridsim.example01.Example1 mList.add( new Machine(1, 4, mipsRating)); // Second ^ example01\Example1.java:124: cannot find symbol symbol : class Machine location: class gridsim.example01.Example1 mList.add( new Machine(2, 2, mipsRating)); // Third ^ example01\Example1.java:137: cannot find symbol symbol : class ResourceCharacteristics location: class gridsim.example01.Example1 ResourceCharacteristics resConfig = new ResourceCharac ^ example01\Example1.java:137: cannot find symbol symbol : class ResourceCharacteristics location: class gridsim.example01.Example1 ResourceCharacteristics resConfig = new ResourceCharac ^ example01\Example1.java:138: cannot find symbol symbol : variable ResourceCharacteristics location: class gridsim.example01.Example1 arch, os, mList, ResourceCharacteristics.TIME_ ^ example01\Example1.java:161: cannot find symbol symbol : class GridResource location: class gridsim.example01.Example1 GridResource gridRes = null; ^ example01\Example1.java:164: cannot find symbol symbol : class GridResource location: class gridsim.example01.Example1 gridRes = new GridResource(name, baud_rate, seed, ^ 13 errors* please help me Thanks Vinaya.C |
From: Suleman K. <sul...@ya...> - 2011-06-10 07:10:22
|
Dear i am new to gridsim. can some one tell me that how should i implement checkpointing & replication in gridsim. Suleman khan +923149243344 |
From: Mayuri M. <may...@gm...> - 2011-06-10 03:23:44
|
Thank you very much abdul for replying as i was stuck in implementation due to these queries. I shall try as per your advice. On Tue, Jun 7, 2011 at 8:43 PM, Abdul <abd...@ya...> wrote: > *You can try this for getting a free PE “getNumFreePE” for all the > Machines* *Also for IO, you can use “getBaudRate” from “Interface NetIO” > and “setPacketSize” from “TrafficGenerator”* *You might be able to use > “getAvailableSpace” from Class HarddriveStorage* *Someone should comment > regarding CPU utilization rather than getting a free PE and Memory belonging > to a PE/Machine/Resource, if any* > > > ------------------------------ > > *From:* Mayuri Mehta [mailto:may...@gm...] > *Sent:* 07 June 2011 18:46 > *To:* gri...@li...; ra...@cs...; Marcos Dias de > Assuncao; Marcos Dias de Assuncao; Abdul; pr...@cs... > *Subject:* Kindly reply for Query regarding load balancing in GridSim > > > > > > *Dear all,* > > *We are simulating Dynamic load balancing algoirthm using GridSim. As per > our algorithm, we want to collect CPU utilization, Memory utilization and > I/O utilization of different resources to calculate load of the resource. We > are using network examples of GridSim for the same. However, we donot know > that from where to collect memory and I/O utilization of resources?* > > > > *Can you please guide us for the same?? Even we donot know that whether it > is possible or not in Gridsim to collect memroy and I/O utilization. * > > *Can we add our own module for the same? if So, how?? Please give your > expert comments on the same.** > * > > > > (2) *we also want to divide nodes into different groups. please guide us > that how is it possible with gridsim as it is the primary requirement of our > proposed load balancing algorithm.** > *-- > Regards, > Mayuri Mehta > Research Scholar > Department of Computer Engineering, > S V National Institute of Technology, > Ichchhanath, Surat, INDIA - 395 007. > > > > > -- > Regards, > Mayuri Mehta > Research Scholar > Department of Computer Engineering, > S V National Institute of Technology, > Ichchhanath, Surat, INDIA - 395 007. > -- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. |
From: Abdul <abd...@ya...> - 2011-06-07 15:14:12
|
You can try this for getting a free PE "getNumFreePE" for all the Machines Also for IO, you can use "getBaudRate" from "Interface NetIO" and "setPacketSize" from "TrafficGenerator" You might be able to use "getAvailableSpace" from Class HarddriveStorage Someone should comment regarding CPU utilization rather than getting a free PE and Memory belonging to a PE/Machine/Resource, if any _____ From: Mayuri Mehta [mailto:may...@gm...] Sent: 07 June 2011 18:46 To: gri...@li...; ra...@cs...; Marcos Dias de Assuncao; Marcos Dias de Assuncao; Abdul; pr...@cs... Subject: Kindly reply for Query regarding load balancing in GridSim Dear all, We are simulating Dynamic load balancing algoirthm using GridSim. As per our algorithm, we want to collect CPU utilization, Memory utilization and I/O utilization of different resources to calculate load of the resource. We are using network examples of GridSim for the same. However, we donot know that from where to collect memory and I/O utilization of resources? Can you please guide us for the same?? Even we donot know that whether it is possible or not in Gridsim to collect memroy and I/O utilization. Can we add our own module for the same? if So, how?? Please give your expert comments on the same. (2) we also want to divide nodes into different groups. please guide us that how is it possible with gridsim as it is the primary requirement of our proposed load balancing algorithm. -- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. -- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. |
From: Mayuri M. <may...@gm...> - 2011-06-07 13:15:36
|
*Dear all,* *We are simulating Dynamic load balancing algoirthm using GridSim. As per our algorithm, we want to collect CPU utilization, Memory utilization and I/O utilization of different resources to calculate load of the resource. We are using network examples of GridSim for the same. However, we donot know that from where to collect memory and I/O utilization of resources?* ** *Can you please guide us for the same?? Even we donot know that whether it is possible or not in Gridsim to collect memroy and I/O utilization. * *Can we add our own module for the same? if So, how?? Please give your expert comments on the same. * (2) *we also want to divide nodes into different groups. please guide us that how is it possible with gridsim as it is the primary requirement of our proposed load balancing algorithm. *-- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. -- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. |
From: Mayuri M. <may...@gm...> - 2011-06-03 10:25:03
|
*Dear all,* *We are simulating Dynamic load balancing algoirthm using GridSim. As per our algorithm, we want to collect CPU utilization, Memory utilization and I/O utilization of different resources to calculate load of the resource. We are using network examples of GridSim for the same. However, we donot know that from where to collect memory and I/O utilization of resources?* ** *Can you please guide us for the same?? Even we donot know that whether it is possible or not in Gridsim to collect memroy and I/O utilization. * *Can we add our own module for the same? if So, how?? Please give your expert comments on the same. * (2) *we also want to divide nodes into different groups. please guide us that how is it possible with gridsim as it is the primary requirement of our proposed load balancing algorithm. *-- Regards, Mayuri Mehta Research Scholar Department of Computer Engineering, S V National Institute of Technology, Ichchhanath, Surat, INDIA - 395 007. |
From: poongodi s. <poo...@gm...> - 2011-06-03 08:12:56
|
i want dataset (100 records) for gridlet details. |
From: Emilio C. <pet...@ho...> - 2011-04-28 10:09:14
|
Hi, i'm studying the scheduling algoritms for Grid... i must do some evaluation as response time, execution time and ect. I have not problems with FCFS policy (SpaceShared) becouse all the data are available, but with RoundRobin policy (TimeShared) some data as waiting time in queue it not present becouse all the gridlets are execute to same time... Have you some idea to resolve this my problem? Thanks. |
From: Arijit M. <ari...@gm...> - 2011-04-27 07:29:49
|
Hi, I want to know how to create Gridlets of average length of 100 MI. Please help me. Thanks. -- Arijit Mukherjee |
From: Pablo C. <pc...@ac...> - 2011-04-26 12:07:22
|
That's a pretty much generic question. Maybe you could elaborate on what part of the implementation you are finding difficult to map to gridsim. Maybe the mapping from PSO to gridsim's architecture? maybe the need for some particular functionality? Also, giving some explanation on how do you plan to use PSO to grid schedulling would be very beneficial. Pablo On 04/26/2011 01:13 PM, Sudhir Mishra wrote: > Hello everyone, > > Can anybody tell me how can I implement Particle Swarm Optimization > Algorithm using gridsim to schedule jobs to different resources. > > > Thanks, > Sudhir Mishra > > > ------------------------------------------------------------------------------ > WhatsUp Gold - Download Free Network Management Software > The most intuitive, comprehensive, and cost-effective network > management toolset available today. Delivers lowest initial > acquisition cost and overall TCO of any competing solution. > http://p.sf.net/sfu/whatsupgold-sd > > > _______________________________________________ > Gridsim-users mailing list > Gri...@li... > https://lists.sourceforge.net/lists/listinfo/gridsim-users -- ======================================================================== 0 0 0 Pablo Chacin | Dept. d'Arquitectura de Computadors 0 0 0 e-mail: pc...@ac... | UPC-Campus Nord. Modul D6-212 0 0 0 phone: +34 +93 405 4059 | Jordi Girona, 1-3 U P C fax: +34 +93 401 7055 | 08034 Barcelona - SPAIN www: http://personals.ac.upc.es/pchacin ======================================================================== |
From: Sudhir M. <mis...@ya...> - 2011-04-26 11:13:16
|
Hello everyone, Can anybody tell me how can I implement Particle Swarm Optimization Algorithm using gridsim to schedule jobs to different resources. Thanks, Sudhir Mishra |
From: Mahdi M. <mot...@gm...> - 2011-04-25 13:54:34
|
Tnx Alex. but what about Globus toolkit? can I use it for my resource discovery model? or any other tools? what is my solution to test a new resource discovery model for grid networks? |
From: Alex G. <fro...@ya...> - 2011-04-25 05:28:00
|
You just need to download the jar file from the GridSim official site and then you should go through the first 10 basic examples. Mind you that GridSim is not intended for resource discovery testing and it provides it's own Grid Information Service/s. In order for you to test something other than resource allocation and task submission policies you'll have to implement and modify some of the native GridSim mechanisms. Cheers, alex ________________________________ From: Mahdi Motalebi <mot...@gm...> To: gri...@li... Sent: Mon, April 25, 2011 6:50:41 AM Subject: [GridSim-users] gridsim use Hi everybody I am new in gridsim. I need to install and use it for simulating a model of resource discovery. can anybody help me? |