Changes between Version 75 and Version 76 of DevProjects
- Timestamp:
- Mar 27, 2012, 2:39:50 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevProjects
v75 v76 9 9 || Manager || C++, !WxWidgets, GUI and graphical design, usability || 10 10 || Server programs || C++, system programming, database design, MySQL || 11 || Web features || PHP, CSS, web design, database design, MySQL ||12 || Unix build system || autoconf, automake ||11 || Web features || HTML, CSS, PHP, web design, usability, database design, MySQL || 12 || Unix build system || autoconf, automake, other GNU tools || 13 13 14 14 The University of California holds the copyright on all BOINC source code. … … 34 34 Don't start coding until you do this. 35 35 36 Submit your work (as diffs or files) to the area owner, so that they can evaluate it and possibly check it in. 36 Submit your work (as diffs or files) to the area owner, 37 so that they can evaluate it and possibly check it in. 37 38 38 39 == Proposed features == … … 43 44 === Web features === 44 45 45 1. Use a WYSIWYG bbcode editor such as http://wysiwygbbcode.codeplex.com/releases/view/4983646 1. Document the classes and IDs used by the PHP code;document the "standard" stylesheets, main.css and white.css.46 1. Document the classes and IDs used by the PHP code; 47 document the "standard" stylesheets, main.css and white.css. 47 48 Finish black.css, and maybe make another style. 49 1. Add a Reset button to prefs (both general and project) 50 1. [wiki:PrefsRemodel Remodel the preferences system] 48 51 1. Combine user page and profile. #601 49 52 1. Change default Q&A page to refer BOINC-specific questions to BOINC web site. #603 50 53 1. Convert team name HTML and team description to BBcode. #604 51 1. Add a Reset button to prefs (both general and project)52 1. [wiki:PrefsRemodel Remodel the preferences system]53 54 1. Add new profile features: #609 54 55 * list of recent posts and threads this person created, on this and other projects. 55 * other features from social networking sites? 56 * Add ‘referral’ mechanism: new user creates account, enters email of ‘referrer’ (or goes to URL that has it embedded). 57 Give referrer a fraction of credit (or a 1-time bonus). 58 List referrals on user page (show only those still active). 59 Add new referral table to DB. 56 * other features from social networking sites, 57 e.g. recent posts by your friends. 58 1. Add ‘referral’ mechanism: new user creates account, enters email of ‘referrer’ 59 (or goes to URL that has it embedded). 60 Give referrer a fraction of credit (or a 1-time bonus). 61 List referrals on user page (show only those still active). 62 Add new referral table to DB. 63 1. Use a WYSIWYG bbcode editor such as http://wysiwygbbcode.codeplex.com/releases/view/49836 60 64 61 65 === Applications === … … 66 70 (or at least reducing the number of cases for HR). 67 71 1. Java support: core client checks for the existence of JVM, reports version to scheduler. 68 Write Java wrapper (runs JVM, gives it jar files). Note: Sztaki has already done some part of this. 72 Write Java wrapper (runs JVM, gives it jar files). 73 Note: Sztaki has already done some part of this. 69 74 1. Same, .NET 75 76 === Runtime system === 77 1. Implement a mechanism where the client can tell apps to checkpoint. 78 1. Use modern process-grouping mechanisms (e.g. Unix process groups). 70 79 71 80 === Client === … … 73 82 1. Keep track of the statistics of how long it takes to upload files, and to report results. 74 83 Use that info to improve compute deadlines (e.g., subtract the 2 sigma point for both). 75 1. Add an "expiration delay" for files: delete them only after they haven't been used for X time.76 84 1. Core client monitors total CPU usage, limits its own CPU usage so that total is < 100%. 77 85 1. Monitor working-set size of non-BOINC apps; don't allow total to exceed physical RAM. … … 79 87 Note: this might be tricky because parts of a process's working set is shared with other processes. 80 88 Some study is needed to figure out the best approach. 81 1. GUI RPC to tell apps to checkpoint and quit.82 1. Keep track of upload/download sizes, show weekly/monthly transfer totals.83 89 1. Use multiple disks. 84 90 This would increase available space, … … 89 95 [http://www.lm-sensors.org/ Open-source software for collecting sensor data (on Linux)] is available. 90 96 1. Windows: get proxy config info directly from the OS. 91 1. After an applications exits or is killed (for whatever reason) make sure92 (after a few second delay) that its subprocesses are gone too.93 Don't restart the job until this happens.94 Unix: use process groups and killpg().95 1. More generally: make a better state machine for shutting down apps:96 tell them to checkpoint, wait a little, tell them to quit, clean up straggler processes.97 1. Same, but for suspend: if we tell a client to suspend and it's still98 using lots of CPU after a few seconds, abort it (or something).99 97 1. Integrate !BitTorrent ([http://www.rasterbar.com/products/libtorrent/ libtorrent]?) 100 98 with the core client (Janus Kristensen is working on this). … … 111 109 === BOINC Manager === 112 110 113 114 111 1. Show credit numbers (especially totals) with thousands-groups separators (e.g., commas) 115 112 1. If using an AMS, put link to AMS (or user page) in sys tray popup, elsewhere. … … 118 115 * Skinnable via CSS 119 116 * nicer-looking than the WxWidgets version 117 1. Show weekly/monthly transfer totals. 120 118 121 119 === Server and Back End === 122 120 123 124 1. Add a mechanism to recover from situations where the scheduler fails to send its reply message.125 * Add a reply_pending field to host table. Set at start of scheduler, clear after reply message sent.126 * If get a request from host with reply_pending==1, scan for lost results.127 This would replace the <resend_lost_results> mechanism.128 NOTE: this is not a good design; successful send doesn't imply successful receipt.129 121 1. XML stats: add lat/long to user record? 130 122 1. Enforce file immutability. … … 132 124 and if so make sure that it is the same. 133 125 Use MD5s for efficiency. 134 1. Add support for MPI-type applications: try to schedule all the jobs in a batch more or less simultaneously. 126 1. Add support for parallel applications: 127 try to schedule all the jobs in a batch more or less simultaneously. 135 128 NOTE: being done by Volpex project from U. of Houston. 136 1. Implement a mechanism so that server software detects incompatible database format. (related to #715) 137 1. Add project_specific_info field to host table (text). 138 This stores, for each app, the ID of last reference WU completed, 139 and the info returned by that WU (as part of its stderr output, in a <app_info> tag). 140 ?? how to select an app version based on contents of app_info? 141 This could be used, e.g., to do app-specific benchmarking, 142 to gather info on the host hardware or software configuration, 143 or to periodically check the numerical hardware. 129 1. Implement a mechanism so that server software detects incompatible database format. 130 (related to #715)