This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Description - support multiple swift clusters running on same server | |
| Target - enterprise | |
| Rationale - enterprises would likely value having capability of sharing infrastructure for running | |
| multiple, separate swift clusters. A separate cluster may be needed/desired for: different versions | |
| of swift, different swift middleware, separation of admin. duties, different lines of business | |
| Similarities - Oracle and DB2 support such functionality for enterprises | |
| Work needed - support for unique ports and paths | |
| Technical effort - small | |
| Community adoption - idea needs to be sold | |
| Payoff - small/medium (remove barrier) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Disruptive | |
| ========== | |
| Random UI focus changes on ThinkPad Yoga 12 (Win8.1) | |
| Frequently experience low-memory conditions (8GB RAM, no VMs) | |
| "Close programs to prevent information loss" | |
| "Your computer is low on memory. Save your files and close these programs:" | |
| "Microsoft Outlook" | |
| Win8 UI/Usability | |
| Frequent reboots required by Windows and Intel corporate updates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| QUESTION | |
| ======== | |
| how is a handoff partition flagged versus a partition that is marked to be moved during a rebalance? | |
| ANSWER (notmyname) | |
| ====== | |
| "handoff" is only a thing defined by the results of the call to get_more_nodes(). it's not a concept that means anything with regards to rebalancing. ie it's not "flagged" or anything. handoffs are just an ordered walk through the ring | |
| QUESTION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| power shift count | |
| --------------------------------------- | |
| 32 0 4294967296 | |
| 31 1 2147483648 | |
| 30 2 1073741824 | |
| 29 3 536870912 | |
| 28 4 268435456 | |
| 27 5 134217728 | |
| 26 6 67108864 | |
| 25 7 33554432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" 1>&2 | |
| exit 1 | |
| fi | |
| SWIFT_DISK_BASE_DIR="/srv" | |
| SWIFT_MOUNT_BASE_DIR="/mnt" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #************* QUESTIONS ************* | |
| # 1) /var/log/swift? | |
| # 2) /var/cache/swift? | |
| #*************************************** | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" 1>&2 | |
| exit 1 |
NewerOlder